after_merge
stringlengths
28
79.6k
before_merge
stringlengths
20
79.6k
url
stringlengths
38
71
full_traceback
stringlengths
43
922k
traceback_type
stringclasses
555 values
def validator(phase, plugin_info): if phase in ("before_import", "before_load", "before_enable"): setattr(plugin_info, "safe_mode_victim", not plugin_info.bundled) if not plugin_info.bundled: return False return True
def validator(phase, plugin_info): if phase == "after_load": setattr(plugin_info, "safe_mode_victim", not plugin_info.bundled) setattr(plugin_info, "safe_mode_enabled", False) elif phase == "before_enable": if not plugin_info.bundled: setattr(plugin_info, "safe_mode_enabled", True) return False return True
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def get_plugin_blacklist(settings, connectivity_checker=None): import requests import os import time import yaml from octoprint.util import bom_aware_open from octoprint.util.version import is_octoprint_compatible logger = log.getLogger(__name__ + ".startup") if connectivity_checker is not None and not connectivity_checker.online: logger.info("We don't appear to be online, not fetching plugin blacklist") return [] def format_blacklist(entries): format_entry = ( lambda x: "{} ({})".format(x[0], x[1]) if isinstance(x, (list, tuple)) and len(x) == 2 else "{} (any)".format(x) ) return ", ".join(map(format_entry, entries)) def process_blacklist(entries): result = [] if not isinstance(entries, list): return result for entry in entries: if not "plugin" in entry: continue if "octoversions" in entry and not is_octoprint_compatible( *entry["octoversions"] ): continue if "version" in entry: logger.debug( "Blacklisted plugin: {}, version: {}".format( entry["plugin"], entry["version"] ) ) result.append((entry["plugin"], entry["version"])) elif "versions" in entry: logger.debug( "Blacklisted plugin: {}, versions: {}".format( entry["plugin"], ", ".join(entry["versions"]) ) ) for version in entry["versions"]: result.append((entry["plugin"], version)) else: logger.debug("Blacklisted plugin: {}".format(entry["plugin"])) result.append(entry["plugin"]) return result def fetch_blacklist_from_cache(path, ttl): if not os.path.isfile(path): return None if os.stat(path).st_mtime + ttl < time.time(): return None with bom_aware_open(path, encoding="utf-8", mode="r") as f: result = yaml.safe_load(f) if isinstance(result, list): return result def fetch_blacklist_from_url(url, timeout=3, cache=None): result = [] try: r = requests.get(url, timeout=timeout) result = process_blacklist(r.json()) if cache is not None: try: with bom_aware_open(cache, encoding="utf-8", mode="w") as f: yaml.safe_dump(result, f) except: logger.info( "Fetched plugin blacklist but couldn't write it to its cache file." ) except: logger.info( "Unable to fetch plugin blacklist from {}, proceeding without it.".format( url ) ) return result try: # first attempt to fetch from cache cache_path = os.path.join( settings.getBaseFolder("data"), "plugin_blacklist.yaml" ) ttl = settings.getInt(["server", "pluginBlacklist", "ttl"]) blacklist = fetch_blacklist_from_cache(cache_path, ttl) if blacklist is None: # no result from the cache, let's fetch it fresh url = settings.get(["server", "pluginBlacklist", "url"]) timeout = settings.getFloat(["server", "pluginBlacklist", "timeout"]) blacklist = fetch_blacklist_from_url(url, timeout=timeout, cache=cache_path) if blacklist is None: # still now result, so no blacklist blacklist = [] if blacklist: logger.info( "Blacklist processing done, " "adding {} blacklisted plugin versions: {}".format( len(blacklist), format_blacklist(blacklist) ) ) else: logger.info("Blacklist processing done") return blacklist except: logger.exception( "Something went wrong while processing the plugin blacklist. Proceeding without it." )
def get_plugin_blacklist(settings, connectivity_checker=None): import requests import os import time import yaml from octoprint.util import bom_aware_open from octoprint.util.version import is_octoprint_compatible logger = log.getLogger(__name__ + ".startup") if connectivity_checker is not None and not connectivity_checker.online: logger.info("We don't appear to be online, not fetching plugin blacklist") return [] def format_blacklist(entries): format_entry = ( lambda x: "{} ({})".format(x[0], x[1]) if isinstance(x, (list, tuple)) and len(x) == 2 else "{} (any)".format(x) ) return ", ".join(map(format_entry, entries)) def process_blacklist(entries): result = [] if not isinstance(entries, list): return result for entry in entries: if not "plugin" in entry: continue if "octoversions" in entry and not is_octoprint_compatible( *entry["octoversions"] ): continue if "version" in entry: logger.debug( "Blacklisted plugin: {}, version: {}".format( entry["plugin"], entry["version"] ) ) result.append((entry["plugin"], entry["version"])) elif "versions" in entry: logger.debug( "Blacklisted plugin: {}, versions: {}".format( entry["plugin"], ", ".join(entry["versions"]) ) ) for version in entry["versions"]: result.append((entry["plugin"], version)) else: logger.debug("Blacklisted plugin: {}".format(entry["plugin"])) result.append(entry["key"]) return result def fetch_blacklist_from_cache(path, ttl): if not os.path.isfile(path): return None if os.stat(path).st_mtime + ttl < time.time(): return None with bom_aware_open(path, encoding="utf-8", mode="r") as f: result = yaml.safe_load(f) if isinstance(result, list): return result def fetch_blacklist_from_url(url, timeout=3, cache=None): result = [] try: r = requests.get(url, timeout=timeout) result = process_blacklist(r.json()) if cache is not None: try: with bom_aware_open(cache, encoding="utf-8", mode="w") as f: yaml.safe_dump(result, f) except: logger.info( "Fetched plugin blacklist but couldn't write it to its cache file." ) except: logger.info( "Unable to fetch plugin blacklist from {}, proceeding without it.".format( url ) ) return result try: # first attempt to fetch from cache cache_path = os.path.join( settings.getBaseFolder("data"), "plugin_blacklist.yaml" ) ttl = settings.getInt(["server", "pluginBlacklist", "ttl"]) blacklist = fetch_blacklist_from_cache(cache_path, ttl) if blacklist is None: # no result from the cache, let's fetch it fresh url = settings.get(["server", "pluginBlacklist", "url"]) timeout = settings.getFloat(["server", "pluginBlacklist", "timeout"]) blacklist = fetch_blacklist_from_url(url, timeout=timeout, cache=cache_path) if blacklist is None: # still now result, so no blacklist blacklist = [] if blacklist: logger.info( "Blacklist processing done, " "adding {} blacklisted plugin versions: {}".format( len(blacklist), format_blacklist(blacklist) ) ) else: logger.info("Blacklist processing done") return blacklist except: logger.exception( "Something went wrong while processing the plugin blacklist. Proceeding without it." )
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def process_blacklist(entries): result = [] if not isinstance(entries, list): return result for entry in entries: if not "plugin" in entry: continue if "octoversions" in entry and not is_octoprint_compatible( *entry["octoversions"] ): continue if "version" in entry: logger.debug( "Blacklisted plugin: {}, version: {}".format( entry["plugin"], entry["version"] ) ) result.append((entry["plugin"], entry["version"])) elif "versions" in entry: logger.debug( "Blacklisted plugin: {}, versions: {}".format( entry["plugin"], ", ".join(entry["versions"]) ) ) for version in entry["versions"]: result.append((entry["plugin"], version)) else: logger.debug("Blacklisted plugin: {}".format(entry["plugin"])) result.append(entry["plugin"]) return result
def process_blacklist(entries): result = [] if not isinstance(entries, list): return result for entry in entries: if not "plugin" in entry: continue if "octoversions" in entry and not is_octoprint_compatible( *entry["octoversions"] ): continue if "version" in entry: logger.debug( "Blacklisted plugin: {}, version: {}".format( entry["plugin"], entry["version"] ) ) result.append((entry["plugin"], entry["version"])) elif "versions" in entry: logger.debug( "Blacklisted plugin: {}, versions: {}".format( entry["plugin"], ", ".join(entry["versions"]) ) ) for version in entry["versions"]: result.append((entry["plugin"], version)) else: logger.debug("Blacklisted plugin: {}".format(entry["plugin"])) result.append(entry["key"]) return result
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def __init__( self, key, location, instance, name=None, version=None, description=None, author=None, url=None, license=None, ): self.key = key self.location = location self.instance = instance self.origin = None self.enabled = True self.blacklisted = False self.forced_disabled = False self.bundled = False self.loaded = False self.managable = True self.needs_restart = False self._name = name self._version = version self._description = description self._author = author self._url = url self._license = license
def __init__( self, key, location, instance, name=None, version=None, description=None, author=None, url=None, license=None, ): self.key = key self.location = location self.instance = instance self.origin = None self.enabled = True self.blacklisted = False self.bundled = False self.loaded = False self.managable = True self.needs_restart = False self._name = name self._version = version self._description = description self._author = author self._url = url self._license = license
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def validate(self, phase, additional_validators=None): result = True if phase == "before_import": result = not self.forced_disabled and not self.blacklisted and result elif phase == "before_load": # if the plugin still uses __plugin_init__, log a deprecation warning and move it to __plugin_load__ if hasattr(self.instance, self.__class__.attr_init): if not hasattr(self.instance, self.__class__.attr_load): # deprecation warning import warnings warnings.warn( "{name} uses deprecated control property __plugin_init__, use __plugin_load__ instead".format( name=self.key ), DeprecationWarning, ) # move it init = getattr(self.instance, self.__class__.attr_init) setattr(self.instance, self.__class__.attr_load, init) # delete __plugin_init__ delattr(self.instance, self.__class__.attr_init) elif phase == "after_load": # if the plugin still uses __plugin_implementations__, log a deprecation warning and put the first # item into __plugin_implementation__ if hasattr(self.instance, self.__class__.attr_implementations): if not hasattr(self.instance, self.__class__.attr_implementation): # deprecation warning import warnings warnings.warn( "{name} uses deprecated control property __plugin_implementations__, use __plugin_implementation__ instead - only the first implementation of {name} will be recognized".format( name=self.key ), DeprecationWarning, ) # put first item into __plugin_implementation__ implementations = getattr( self.instance, self.__class__.attr_implementations ) if len(implementations) > 0: setattr( self.instance, self.__class__.attr_implementation, implementations[0], ) # delete __plugin_implementations__ delattr(self.instance, self.__class__.attr_implementations) if additional_validators is not None: for validator in additional_validators: result = validator(phase, self) and result return result
def validate(self, phase, additional_validators=None): result = True if phase == "before_load": # if the plugin still uses __plugin_init__, log a deprecation warning and move it to __plugin_load__ if hasattr(self.instance, self.__class__.attr_init): if not hasattr(self.instance, self.__class__.attr_load): # deprecation warning import warnings warnings.warn( "{name} uses deprecated control property __plugin_init__, use __plugin_load__ instead".format( name=self.key ), DeprecationWarning, ) # move it init = getattr(self.instance, self.__class__.attr_init) setattr(self.instance, self.__class__.attr_load, init) # delete __plugin_init__ delattr(self.instance, self.__class__.attr_init) elif phase == "after_load": # if the plugin still uses __plugin_implementations__, log a deprecation warning and put the first # item into __plugin_implementation__ if hasattr(self.instance, self.__class__.attr_implementations): if not hasattr(self.instance, self.__class__.attr_implementation): # deprecation warning import warnings warnings.warn( "{name} uses deprecated control property __plugin_implementations__, use __plugin_implementation__ instead - only the first implementation of {name} will be recognized".format( name=self.key ), DeprecationWarning, ) # put first item into __plugin_implementation__ implementations = getattr( self.instance, self.__class__.attr_implementations ) if len(implementations) > 0: setattr( self.instance, self.__class__.attr_implementation, implementations[0], ) # delete __plugin_implementations__ delattr(self.instance, self.__class__.attr_implementations) if additional_validators is not None: for validator in additional_validators: result = result and validator(phase, self) return result
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def _find_plugins_from_folders(self, folders, existing, ignored_uninstalled=True): result = OrderedDict() for folder in folders: try: flagged_readonly = False if isinstance(folder, (list, tuple)): if len(folder) == 2: folder, flagged_readonly = folder else: continue actual_readonly = not os.access(folder, os.W_OK) if not os.path.exists(folder): self.logger.warn( "Plugin folder {folder} could not be found, skipping it".format( folder=folder ) ) continue for entry in scandir(folder): try: if entry.is_dir() and os.path.isfile( os.path.join(entry.path, "__init__.py") ): key = entry.name elif entry.is_file() and entry.name.endswith(".py"): key = entry.name[:-3] # strip off the .py extension if key.startswith("__"): # might be an __init__.py in our plugins folder, or something else we don't want # to handle continue else: continue if ( key in existing or key in result or ( ignored_uninstalled and key in self.marked_plugins["uninstalled"] ) ): # plugin is already defined, ignore it continue bundled = flagged_readonly plugin = self._import_plugin_from_module( key, folder=folder, bundled=bundled ) if plugin: plugin.origin = FolderOrigin("folder", folder) plugin.managable = not flagged_readonly and not actual_readonly plugin.enabled = False result[key] = plugin except: self.logger.exception( "Error processing folder entry {!r} from folder {}".format( entry, folder ) ) except: self.logger.exception("Error processing folder {}".format(folder)) return result
def _find_plugins_from_folders(self, folders, existing, ignored_uninstalled=True): result = OrderedDict() for folder in folders: try: flagged_readonly = False if isinstance(folder, (list, tuple)): if len(folder) == 2: folder, flagged_readonly = folder else: continue actual_readonly = not os.access(folder, os.W_OK) if not os.path.exists(folder): self.logger.warn( "Plugin folder {folder} could not be found, skipping it".format( folder=folder ) ) continue for entry in scandir(folder): try: if entry.is_dir() and os.path.isfile( os.path.join(entry.path, "__init__.py") ): key = entry.name elif entry.is_file() and entry.name.endswith(".py"): key = entry.name[:-3] # strip off the .py extension if key.startswith("__"): # might be an __init__.py in our plugins folder, or something else we don't want # to handle continue else: continue if ( key in existing or key in result or ( ignored_uninstalled and key in self.marked_plugins["uninstalled"] ) ): # plugin is already defined, ignore it continue plugin = self._import_plugin_from_module(key, folder=folder) if plugin: plugin.origin = FolderOrigin("folder", folder) plugin.managable = not flagged_readonly and not actual_readonly plugin.bundled = flagged_readonly plugin.enabled = False result[key] = plugin except: self.logger.exception( "Error processing folder entry {!r} from folder {}".format( entry, folder ) ) except: self.logger.exception("Error processing folder {}".format(folder)) return result
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def _find_plugins_from_entry_points(self, groups, existing, ignore_uninstalled=True): result = OrderedDict() # let's make sure we have a current working set ... working_set = pkg_resources.WorkingSet() # ... including the user's site packages import site import sys if site.ENABLE_USER_SITE: if not site.USER_SITE in working_set.entries: working_set.add_entry(site.USER_SITE) if not site.USER_SITE in sys.path: site.addsitedir(site.USER_SITE) if not isinstance(groups, (list, tuple)): groups = [groups] def wrapped(gen): # to protect against some issues in installed packages that make iteration over entry points # fall on its face - e.g. https://groups.google.com/forum/#!msg/octoprint/DyXdqhR0U7c/kKMUsMmIBgAJ for entry in gen: try: yield entry except: self.logger.exception( "Something went wrong while processing the entry points of a package in the " "Python environment - broken entry_points.txt in some package?" ) for group in groups: for entry_point in wrapped( working_set.iter_entry_points(group=group, name=None) ): try: key = entry_point.name module_name = entry_point.module_name version = entry_point.dist.version if ( key in existing or key in result or ( ignore_uninstalled and key in self.marked_plugins["uninstalled"] ) ): # plugin is already defined or marked as uninstalled, ignore it continue kwargs = dict(module_name=module_name, version=version) package_name = None try: module_pkginfo = InstalledEntryPoint(entry_point) except: self.logger.exception( "Something went wrong while retrieving package info data for module %s" % module_name ) else: kwargs.update( dict( name=module_pkginfo.name, summary=module_pkginfo.summary, author=module_pkginfo.author, url=module_pkginfo.home_page, license=module_pkginfo.license, ) ) package_name = module_pkginfo.name plugin = self._import_plugin_from_module(key, **kwargs) if plugin: plugin.origin = EntryPointOrigin( "entry_point", group, module_name, package_name, version ) plugin.enabled = False # plugin is manageable if its location is writable and OctoPrint # is either not running from a virtual env or the plugin is # installed in that virtual env - the virtual env's pip will not # allow us to uninstall stuff that is installed outside # of the virtual env, so this check is necessary plugin.managable = os.access(plugin.location, os.W_OK) and ( not self._python_virtual_env or is_sub_path_of(plugin.location, self._python_prefix) or is_editable_install( self._python_install_dir, package_name, module_name, plugin.location, ) ) result[key] = plugin except: self.logger.exception( "Error processing entry point {!r} for group {}".format( entry_point, group ) ) return result
def _find_plugins_from_entry_points(self, groups, existing, ignore_uninstalled=True): result = OrderedDict() # let's make sure we have a current working set ... working_set = pkg_resources.WorkingSet() # ... including the user's site packages import site import sys if site.ENABLE_USER_SITE: if not site.USER_SITE in working_set.entries: working_set.add_entry(site.USER_SITE) if not site.USER_SITE in sys.path: site.addsitedir(site.USER_SITE) if not isinstance(groups, (list, tuple)): groups = [groups] def wrapped(gen): # to protect against some issues in installed packages that make iteration over entry points # fall on its face - e.g. https://groups.google.com/forum/#!msg/octoprint/DyXdqhR0U7c/kKMUsMmIBgAJ for entry in gen: try: yield entry except: self.logger.exception( "Something went wrong while processing the entry points of a package in the " "Python environment - broken entry_points.txt in some package?" ) for group in groups: for entry_point in wrapped( working_set.iter_entry_points(group=group, name=None) ): try: key = entry_point.name module_name = entry_point.module_name version = entry_point.dist.version if ( key in existing or key in result or ( ignore_uninstalled and key in self.marked_plugins["uninstalled"] ) ): # plugin is already defined or marked as uninstalled, ignore it continue kwargs = dict(module_name=module_name, version=version) package_name = None try: module_pkginfo = InstalledEntryPoint(entry_point) except: self.logger.exception( "Something went wrong while retrieving package info data for module %s" % module_name ) else: kwargs.update( dict( name=module_pkginfo.name, summary=module_pkginfo.summary, author=module_pkginfo.author, url=module_pkginfo.home_page, license=module_pkginfo.license, ) ) package_name = module_pkginfo.name plugin = self._import_plugin_from_module(key, **kwargs) if plugin: plugin.origin = EntryPointOrigin( "entry_point", group, module_name, package_name, version ) # plugin is manageable if its location is writable and OctoPrint # is either not running from a virtual env or the plugin is # installed in that virtual env - the virtual env's pip will not # allow us to uninstall stuff that is installed outside # of the virtual env, so this check is necessary plugin.managable = os.access(plugin.location, os.W_OK) and ( not self._python_virtual_env or is_sub_path_of(plugin.location, self._python_prefix) or is_editable_install( self._python_install_dir, package_name, module_name, plugin.location, ) ) plugin.enabled = False result[key] = plugin except: self.logger.exception( "Error processing entry point {!r} for group {}".format( entry_point, group ) ) return result
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def _import_plugin_from_module( self, key, folder=None, module_name=None, name=None, version=None, summary=None, author=None, url=None, license=None, bundled=False, ): # TODO error handling try: if folder: module = imp.find_module(key, [folder]) elif module_name: module = imp.find_module(module_name) else: return None except: self.logger.warn("Could not locate plugin {key}".format(key=key)) return None # Create a simple dummy entry first ... plugin = PluginInfo( key, module[1], None, name=name, version=version, description=summary, author=author, url=url, license=license, ) plugin.bundled = bundled if self._is_plugin_disabled(key): self.logger.info("Plugin {} is disabled.".format(plugin)) plugin.forced_disabled = True if self._is_plugin_blacklisted(key) or ( version is not None and self._is_plugin_version_blacklisted(key, version) ): self.logger.warn("Plugin {} is blacklisted.".format(plugin)) plugin.blacklisted = True if not plugin.validate( "before_import", additional_validators=self.plugin_validators ): return plugin # ... then create and return the real one return self._import_plugin( key, *module, name=name, version=version, summary=summary, author=author, url=url, license=license, bundled=bundled, )
def _import_plugin_from_module( self, key, folder=None, module_name=None, name=None, version=None, summary=None, author=None, url=None, license=None, ): # TODO error handling try: if folder: module = imp.find_module(key, [folder]) elif module_name: module = imp.find_module(module_name) else: return None except: self.logger.warn("Could not locate plugin {key}".format(key=key)) return None if self._is_plugin_blacklisted(key) or ( version is not None and self._is_plugin_version_blacklisted(key, version) ): plugin = PluginInfo( key, module[1], None, name=name, version=version, description=summary, author=author, url=url, license=license, ) plugin.blacklisted = True self.logger.warn( "Plugin {} is blacklisted. Not importing it, only registering a dummy entry.".format( plugin ) ) return plugin plugin = self._import_plugin( key, *module, name=name, version=version, summary=summary, author=author, url=url, license=license, ) if plugin is None: return None if plugin.check(): return plugin else: self.logger.warn( 'Plugin "{plugin}" did not pass check'.format(plugin=str(plugin)) ) return None
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def _import_plugin( self, key, f, filename, description, name=None, version=None, summary=None, author=None, url=None, license=None, bundled=False, ): try: instance = imp.load_module(key, f, filename, description) plugin = PluginInfo( key, filename, instance, name=name, version=version, description=summary, author=author, url=url, license=license, ) plugin.bundled = bundled except: self.logger.exception("Error loading plugin {key}".format(key=key)) return None if plugin.check(): return plugin else: self.logger.warn( 'Plugin "{plugin}" did not pass check'.format(plugin=str(plugin)) ) return None
def _import_plugin( self, key, f, filename, description, name=None, version=None, summary=None, author=None, url=None, license=None, ): try: instance = imp.load_module(key, f, filename, description) return PluginInfo( key, filename, instance, name=name, version=version, description=summary, author=author, url=url, license=license, ) except: self.logger.exception("Error loading plugin {key}".format(key=key)) return None
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def reload_plugins( self, startup=False, initialize_implementations=True, force_reload=None ): self.logger.info( "Loading plugins from {folders} and installed plugin packages...".format( folders=", ".join( map( lambda x: x[0] if isinstance(x, tuple) else str(x), self.plugin_folders, ) ) ) ) if force_reload is None: force_reload = [] plugins = self.find_plugins( existing=dict((k, v) for k, v in self.plugins.items() if not k in force_reload) ) self.disabled_plugins.update(plugins) # 1st pass: loading the plugins for name, plugin in plugins.items(): try: if not plugin.blacklisted and not plugin.forced_disabled: self.load_plugin( name, plugin, startup=startup, initialize_implementation=initialize_implementations, ) except PluginNeedsRestart: pass except PluginLifecycleException as e: self.logger.info(str(e)) self.on_plugins_loaded( startup=startup, initialize_implementations=initialize_implementations, force_reload=force_reload, ) # 2nd pass: enabling those plugins that need enabling for name, plugin in plugins.items(): try: if plugin.loaded and not plugin.forced_disabled: if plugin.blacklisted: self.logger.warn( "Plugin {} is blacklisted. Not enabling it.".format(plugin) ) continue self.enable_plugin( name, plugin=plugin, initialize_implementation=initialize_implementations, startup=startup, ) except PluginNeedsRestart: pass except PluginLifecycleException as e: self.logger.info(str(e)) self.on_plugins_enabled( startup=startup, initialize_implementations=initialize_implementations, force_reload=force_reload, ) if len(self.enabled_plugins) <= 0: self.logger.info("No plugins found") else: self.logger.info( "Found {count} plugin(s) providing {implementations} mixin implementations, {hooks} hook handlers".format( count=len(self.enabled_plugins) + len(self.disabled_plugins), implementations=len(self.plugin_implementations), hooks=sum(map(lambda x: len(x), self.plugin_hooks.values())), ) )
def reload_plugins( self, startup=False, initialize_implementations=True, force_reload=None ): self.logger.info( "Loading plugins from {folders} and installed plugin packages...".format( folders=", ".join( map( lambda x: x[0] if isinstance(x, tuple) else str(x), self.plugin_folders, ) ) ) ) if force_reload is None: force_reload = [] plugins = self.find_plugins( existing=dict((k, v) for k, v in self.plugins.items() if not k in force_reload) ) self.disabled_plugins.update(plugins) # 1st pass: loading the plugins for name, plugin in plugins.items(): try: if not plugin.blacklisted: self.load_plugin( name, plugin, startup=startup, initialize_implementation=initialize_implementations, ) except PluginNeedsRestart: pass except PluginLifecycleException as e: self.logger.info(str(e)) self.on_plugins_loaded( startup=startup, initialize_implementations=initialize_implementations, force_reload=force_reload, ) # 2nd pass: enabling those plugins that need enabling for name, plugin in plugins.items(): try: if plugin.loaded and not self._is_plugin_disabled(name): if plugin.blacklisted: self.logger.warn( "Plugin {} is blacklisted. Not enabling it.".format(plugin) ) continue self.enable_plugin( name, plugin=plugin, initialize_implementation=initialize_implementations, startup=startup, ) except PluginNeedsRestart: pass except PluginLifecycleException as e: self.logger.info(str(e)) self.on_plugins_enabled( startup=startup, initialize_implementations=initialize_implementations, force_reload=force_reload, ) if len(self.enabled_plugins) <= 0: self.logger.info("No plugins found") else: self.logger.info( "Found {count} plugin(s) providing {implementations} mixin implementations, {hooks} hook handlers".format( count=len(self.enabled_plugins) + len(self.disabled_plugins), implementations=len(self.plugin_implementations), hooks=sum(map(lambda x: len(x), self.plugin_hooks.values())), ) )
https://github.com/OctoPrint/OctoPrint/issues/2442
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6 2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms 2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare self._fallback(self.request, b"") File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__ response.extend(app_response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms 2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms 2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms 2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms 2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s 2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s 2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s 2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s 2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s 2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On 2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off 2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down... 2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down 2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye! 2018-02-21 11:22:52,997 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 11:22:53,014 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done 2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started 2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down 2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s 2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s 2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043 2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms 2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms 2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms 2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms 2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms 2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms 2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms 2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms 2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms 2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms 2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26 2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms 2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms 2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms 2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms 2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms 2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms 2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms 2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms 2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms 2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26 2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-21 16:17:26,710 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-21 16:17:26,724 - octoprint.startup - INFO - ****************************************************************************** 2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode 2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s 2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s 2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s 2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s 2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s 2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s 2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s 2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s 2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s 2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s 2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s 2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s 2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms 2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms 2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s 2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms 2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms 2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms 2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms 2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms 2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms 2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms 2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms 2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms 2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms 2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms 2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms 2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms 2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms 2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms 2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms 2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms 2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms 2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms 2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms 2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms 2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms 2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms 2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms 2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms 2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms 2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down... 2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye! 2018-02-22 12:31:23,841 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:31:23,876 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s 2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s 2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms 2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms 2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms 2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180 2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down... 2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down 2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye! 2018-02-22 12:49:25,751 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-02-22 12:49:25,775 - octoprint.startup - INFO - ****************************************************************************** 2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done 2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started 2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers 2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint | !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901689344 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a02082 | version: 0.14.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server... 2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down 2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event 2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'} 2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms 2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6" 2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms 2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms 2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s 2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'} 2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms 2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms 2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s 2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms 2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms 2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms 2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms 2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms 2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms 2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms 2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms 2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms 2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms 2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms 2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms 2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms 2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms 2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms 2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms 2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms 2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms 2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms 2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms 2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180 2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login login_user(user, remember=remember) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user user_logged_in.send(current_app._get_current_object(), user=_get_user()) File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send for receiver in self.receivers_for(sender)] File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler self.onLogin() File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin self.send_event("userLogged", True) File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event self._plugin_manager.send_plugin_message(self._plugin_name, event) AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager' 2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms 2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms 2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms 2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms 2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms 2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms 2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms 2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms 2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
ValueError
def _list_folder(self, path, base="", entry_filter=None, recursive=True, **kwargs): if entry_filter is None: entry_filter = kwargs.get("filter", None) metadata = self._get_metadata(path) if not metadata: metadata = dict() metadata_dirty = False result = dict() for entry in scandir(path): if is_hidden_path(entry.name): # no hidden files and folders continue try: entry_name = entry_display = entry.name entry_path = entry.path entry_is_file = entry.is_file() entry_is_dir = entry.is_dir() entry_stat = entry.stat() except: # error while trying to fetch file metadata, that might be thanks to file already having # been moved or deleted - ignore it and continue continue try: new_entry_name, new_entry_path = self._sanitize_entry( entry_name, path, entry_path ) if entry_name != new_entry_name or entry_path != new_entry_path: entry_display = to_unicode(entry_name) entry_name = new_entry_name entry_path = new_entry_path entry_stat = os.stat(entry_path) except: # error while trying to rename the file, we'll continue here and ignore it continue path_in_location = entry_name if not base else base + entry_name try: # file handling if entry_is_file: type_path = octoprint.filemanager.get_file_type(entry_name) if not type_path: # only supported extensions continue else: file_type = type_path[0] if entry_name in metadata and isinstance(metadata[entry_name], dict): entry_metadata = metadata[entry_name] if not "display" in entry_metadata and entry_display != entry_name: metadata[entry_name]["display"] = entry_display entry_metadata["display"] = entry_display metadata_dirty = True else: entry_metadata = self._add_basic_metadata( path, entry_name, display_name=entry_display, save=False, metadata=metadata, ) metadata_dirty = True # TODO extract model hash from source if possible to recreate link if not entry_filter or entry_filter(entry_name, entry_metadata): # only add files passing the optional filter extended_entry_data = dict() extended_entry_data.update(entry_metadata) extended_entry_data["name"] = entry_name extended_entry_data["display"] = entry_metadata.get( "display", entry_name ) extended_entry_data["path"] = path_in_location extended_entry_data["type"] = file_type extended_entry_data["typePath"] = type_path stat = entry_stat if stat: extended_entry_data["size"] = stat.st_size extended_entry_data["date"] = int(stat.st_mtime) result[entry_name] = extended_entry_data # folder recursion elif entry_is_dir: if entry_name in metadata and isinstance(metadata[entry_name], dict): entry_metadata = metadata[entry_name] if not "display" in entry_metadata and entry_display != entry_name: metadata[entry_name]["display"] = entry_display entry_metadata["display"] = entry_display metadata_dirty = True elif entry_name != entry_display: entry_metadata = self._add_basic_metadata( path, entry_name, display_name=entry_display, save=False, metadata=metadata, ) metadata_dirty = True else: entry_metadata = dict() entry_data = dict( name=entry_name, display=entry_metadata.get("display", entry_name), path=path_in_location, type="folder", typePath=["folder"], ) if recursive: sub_result = self._list_folder( entry_path, base=path_in_location + "/", entry_filter=entry_filter, recursive=recursive, ) entry_data["children"] = sub_result if not entry_filter or entry_filter(entry_name, entry_data): def get_size(): total_size = 0 for element in entry_data["children"].values(): if "size" in element: total_size += element["size"] return total_size # only add folders passing the optional filter extended_entry_data = dict() extended_entry_data.update(entry_data) if recursive: extended_entry_data["size"] = get_size() result[entry_name] = extended_entry_data except: # So something went wrong somewhere while processing this file entry - log that and continue self._logger.exception("Error while processing entry {}".format(entry_path)) continue # TODO recreate links if we have metadata less entries # save metadata if metadata_dirty: self._save_metadata(path, metadata) return result
def _list_folder(self, path, base="", entry_filter=None, recursive=True, **kwargs): if entry_filter is None: entry_filter = kwargs.get("filter", None) metadata = self._get_metadata(path) if not metadata: metadata = dict() metadata_dirty = False result = dict() for entry in scandir(path): if is_hidden_path(entry.name): # no hidden files and folders continue try: entry_name = entry_display = entry.name entry_path = entry.path entry_is_file = entry.is_file() entry_is_dir = entry.is_dir() entry_stat = entry.stat() except: # error while trying to fetch file metadata, that might be thanks to file already having # been moved or deleted - ignore it and continue continue try: new_entry_name, new_entry_path = self._sanitize_entry( entry_name, path, entry_path ) if entry_name != new_entry_name or entry_path != new_entry_path: entry_display = to_unicode(entry_name) entry_name = new_entry_name entry_path = new_entry_path entry_stat = os.stat(entry_path) except: # error while trying to rename the file, we'll continue here and ignore it continue path_in_location = entry_name if not base else base + entry_name # file handling if entry_is_file: type_path = octoprint.filemanager.get_file_type(entry_name) if not type_path: # only supported extensions continue else: file_type = type_path[0] if entry_name in metadata and isinstance(metadata[entry_name], dict): entry_metadata = metadata[entry_name] if not "display" in entry_metadata and entry_display != entry_name: metadata[entry_name]["display"] = entry_display entry_metadata["display"] = entry_display metadata_dirty = True else: entry_metadata = self._add_basic_metadata( path, entry_name, display_name=entry_display, save=False, metadata=metadata, ) metadata_dirty = True # TODO extract model hash from source if possible to recreate link if not entry_filter or entry_filter(entry_name, entry_metadata): # only add files passing the optional filter extended_entry_data = dict() extended_entry_data.update(entry_metadata) extended_entry_data["name"] = entry_name extended_entry_data["display"] = entry_metadata.get( "display", entry_name ) extended_entry_data["path"] = path_in_location extended_entry_data["type"] = file_type extended_entry_data["typePath"] = type_path stat = entry_stat if stat: extended_entry_data["size"] = stat.st_size extended_entry_data["date"] = int(stat.st_mtime) result[entry_name] = extended_entry_data # folder recursion elif entry_is_dir: if entry_name in metadata and isinstance(metadata[entry_name], dict): entry_metadata = metadata[entry_name] if not "display" in entry_metadata and entry_display != entry_name: metadata[entry_name]["display"] = entry_display entry_metadata["display"] = entry_display metadata_dirty = True elif entry_name != entry_display: entry_metadata = self._add_basic_metadata( path, entry_name, display_name=entry_display, save=False, metadata=metadata, ) metadata_dirty = True else: entry_metadata = dict() entry_data = dict( name=entry_name, display=entry_metadata.get("display", entry_name), path=path_in_location, type="folder", typePath=["folder"], ) if recursive: sub_result = self._list_folder( entry_path, base=path_in_location + "/", entry_filter=entry_filter, recursive=recursive, ) entry_data["children"] = sub_result if not entry_filter or entry_filter(entry_name, entry_data): def get_size(): total_size = 0 for element in entry_data["children"].values(): if "size" in element: total_size += element["size"] return total_size # only add folders passing the optional filter extended_entry_data = dict() extended_entry_data.update(entry_data) if recursive: extended_entry_data["size"] = get_size() result[entry_name] = extended_entry_data # TODO recreate links if we have metadata less entries # save metadata if metadata_dirty: self._save_metadata(path, metadata) return result
https://github.com/OctoPrint/OctoPrint/issues/2294
2017-12-16 14:37:34,500 - octoprint - ERROR - Exception on /api/files [GET] Traceback (most recent call last): File "c:\OctoPrint\venv\lib\site-packages\flask-0.10.1-py2.7.egg\flask\app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "c:\OctoPrint\venv\lib\site-packages\flask-0.10.1-py2.7.egg\flask\app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "c:\OctoPrint\venv\lib\site-packages\flask-0.10.1-py2.7.egg\flask\app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "c:\OctoPrint\venv\lib\site-packages\flask-0.10.1-py2.7.egg\flask\app.py", line 1475, in full_dispatch_request rv = self.dispatch_request() File "c:\OctoPrint\venv\lib\site-packages\flask-0.10.1-py2.7.egg\flask\app.py", line 1461, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "c:\OctoPrint\venv\lib\site-packages\octoprint-1.3.6-py2.7.egg\octoprint\server\util\flask.py", line 964, in decorated_function response = f(*args, **kwargs) File "c:\OctoPrint\venv\lib\site-packages\octoprint-1.3.6-py2.7.egg\octoprint\server\api\files.py", line 102, in readGcodeFiles files = _getFileList(FileDestinations.LOCAL, filter=filter, recursive=recursive, allow_from_cache=not force) File "c:\OctoPrint\venv\lib\site-packages\octoprint-1.3.6-py2.7.egg\octoprint\server\api\files.py", line 174, in _getFileList files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values() File "c:\OctoPrint\venv\lib\site-packages\octoprint-1.3.6-py2.7.egg\octoprint\filemanager\__init__.py", line 455, in list_files result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive) File "c:\OctoPrint\venv\lib\site-packages\octoprint-1.3.6-py2.7.egg\octoprint\filemanager\storage.py", line 603, in list_files return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive) File "c:\OctoPrint\venv\lib\site-packages\octoprint-1.3.6-py2.7.egg\octoprint\filemanager\storage.py", line 1338, in _list_folder metadata=metadata) File "c:\OctoPrint\venv\lib\site-packages\octoprint-1.3.6-py2.7.egg\octoprint\filemanager\storage.py", line 1424, in _add_basic_metadata hash=self._create_hash(os.path.join(path, entry)), File "c:\OctoPrint\venv\lib\site-packages\octoprint-1.3.6-py2.7.egg\octoprint\filemanager\storage.py", line 1454, in _create_hash with open(path, "rb") as f: IOError: [Errno 13] Permission denied: u'D:\\Downloads\\Things\\WTTSP_medium_res_continued.gcode'
IOError
def readline(self, terminator=serial.LF): termlen = len(terminator) data = self._buffered timeout = serial.Timeout(self._timeout) while True: # make sure we always read everything that is waiting data += bytearray( self.read(self.inWaiting()) ) # TODO 1.3.8 migrate to in_waiting after pyserial upgrade to 3.4 # check for terminator, if it's there we have found our line termpos = data.find(terminator) if termpos >= 0: # line: everything up to and incl. the terminator line = data[: termpos + termlen] # buffered: everything after the terminator self._buffered = data[termpos + termlen :] return bytes(line) # check if timeout expired if timeout.expired(): break # if we arrive here we so far couldn't read a full line, wait for more data c = self.read(1) if not c: # EOF break # add to data and loop data += c self._buffered = data return bytes("")
def readline(self, terminator=serial.LF): termlen = len(terminator) data = self._buffered timeout = serial.Timeout(self._timeout) while True: # make sure we always read everything that is waiting data += bytearray(self.read(self.in_waiting)) # check for terminator, if it's there we have found our line termpos = data.find(terminator) if termpos >= 0: # line: everything up to and incl. the terminator line = data[: termpos + termlen] # buffered: everything after the terminator self._buffered = data[termpos + termlen :] return bytes(line) # check if timeout expired if timeout.expired(): break # if we arrive here we so far couldn't read a full line, wait for more data c = self.read(1) if not c: # EOF break # add to data and loop data += c self._buffered = data return bytes("")
https://github.com/OctoPrint/OctoPrint/issues/2468
2018-03-08 16:49:29,420 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-03-08 16:49:29,421 - octoprint.server - INFO - OctoPrint 1.3.6 2018-03-08 16:49:29,424 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (3.51) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 16:49:29,444 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 16:49:29,445 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-03-08 16:49:29,416 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:49:41,788 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:49:52,602 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:03,390 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:14,207 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:25,039 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:35,879 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:46,725 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:57,516 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:08,319 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:19,129 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:31,018 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:41,877 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:52,703 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:03,518 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:14,307 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:25,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:36,999 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:47,833 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:58,633 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:11,009 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:21,832 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:33,695 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:44,508 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:55,298 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:07,196 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:18,026 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:28,811 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:39,622 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:50,412 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:02,243 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:14,575 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:25,389 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:36,197 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:47,004 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:58,842 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:09,649 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:20,487 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:31,326 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:43,209 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:55,602 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:06,425 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:17,259 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:28,108 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:38,948 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:50,835 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:02,703 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:15,080 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:25,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:36,689 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:47,502 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:58,329 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:09,124 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:19,944 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:32,300 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:43,097 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:53,914 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:05,810 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:17,699 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:28,550 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:40,432 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:51,261 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:02,101 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:12,896 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:23,731 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:35,617 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:46,402 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:57,213 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:09,100 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:19,908 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:30,702 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:41,516 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:52,314 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:03,127 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:13,949 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:24,789 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:35,632 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:47,515 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:58,352 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:09,188 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:19,986 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:32,372 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:43,212 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:54,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:04,816 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:15,641 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:26,490 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:37,283 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:49,135 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:01,506 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:12,345 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:23,147 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:35,022 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:46,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:57,736 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:08,587 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:19,428 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:30,270 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:41,059 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:52,927 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:04,805 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:15,637 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:27,524 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:39,403 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:50,246 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:01,046 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:12,919 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:23,750 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:35,623 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:46,452 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:57,289 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:09,121 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:19,919 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:30,760 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:41,609 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:52,419 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:03,234 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:15,112 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:25,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:37,783 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:49,647 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:00,498 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:11,328 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:23,209 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:34,017 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:46,404 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:57,240 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:09,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:21,010 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:32,854 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:43,669 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:54,513 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:05,356 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:16,195 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:28,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:38,858 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:49,689 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:02,064 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:12,911 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:23,750 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:34,563 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:46,431 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:58,260 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:10,112 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:20,961 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:31,804 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:42,639 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:53,430 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:04,242 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:16,120 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:26,943 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:37,741 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:48,554 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:59,396 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:10,234 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:21,025 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:32,887 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:43,718 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:54,523 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:06,908 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:17,742 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:28,548 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:39,355 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:50,144 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:02,508 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:13,316 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:24,100 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:34,913 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:47,303 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:58,131 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:08,935 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:19,758 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:30,592 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:41,428 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:53,312 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:04,154 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:16,012 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:26,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:37,645 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:50,007 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:00,835 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:12,726 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:23,558 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:34,364 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:45,190 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:57,022 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:09,397 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:21,231 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:33,609 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:44,424 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:56,250 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:08,617 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:19,423 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:31,318 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:42,109 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:52,936 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:05,311 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:17,716 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:30,083 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:40,907 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:51,744 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:02,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:13,361 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:24,165 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:36,537 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:47,343 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:58,136 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:10,019 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:20,845 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:31,634 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:43,523 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:54,365 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:06,221 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:18,578 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:29,401 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:40,201 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:51,013 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:03,415 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:14,257 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:26,157 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:36,977 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:47,819 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:58,610 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:10,473 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:21,298 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:32,122 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:44,019 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:54,826 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:07,197 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:18,008 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:28,851 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:39,702 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:50,526 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:02,417 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:13,229 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:25,120 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:35,945 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:46,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:57,551 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:09,435 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:21,807 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:32,652 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:44,541 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:56,421 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:08,321 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:19,134 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:29,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:41,786 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:53,647 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:05,536 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:17,933 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:28,765 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:39,602 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:50,408 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:01,200 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:13,075 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:23,901 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:34,735 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:45,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:56,352 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:08,242 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:20,626 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:33,027 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:43,859 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:54,653 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:06,529 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:17,373 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:29,702 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:40,511 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:51,350 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:02,159 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:12,952 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:24,825 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:35,612 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:46,424 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:57,272 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:09,135 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:19,928 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:30,749 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:41,590 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:52,444 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:03,240 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:14,057 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:25,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:36,771 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:47,611 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:58,461 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:10,823 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:21,623 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:32,437 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:44,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:56,145 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:08,525 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:19,361 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:30,220 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:41,008 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:51,818 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:02,664 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:13,511 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:24,312 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:35,136 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:45,973 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:56,811 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:07,653 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:19,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:30,318 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:41,110 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:51,938 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:02,740 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:13,565 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:24,415 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:35,265 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:47,151 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:59,035 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:09,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:21,726 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:32,569 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:43,422 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:54,269 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:06,600 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:17,410 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:28,251 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:40,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:50,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:01,776 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:14,140 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:24,950 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:36,850 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:48,734 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:01,130 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:11,959 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:23,839 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:34,619 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:45,437 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:56,271 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:08,626 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:20,531 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:31,315 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:42,128 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:52,978 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:03,821 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:14,655 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:26,543 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:38,431 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:49,256 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:01,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:13,049 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:25,432 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:36,216 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:47,045 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:57,875 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:08,705 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:20,561 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:32,939 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:43,771 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:55,655 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:07,550 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:18,369 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:29,213 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:41,053 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:51,850 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:02,638 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:13,473 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:24,314 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:35,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:45,928 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:56,749 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:08,648 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:19,476 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:30,270 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:41,097 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:51,912 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:04,268 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:16,157 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:28,038 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:38,827 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:49,665 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:01,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:12,338 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:23,159 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:35,042 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:46,887 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:58,758 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:10,654 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:21,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:32,244 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:43,057 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:53,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:05,735 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:16,584 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:27,373 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:39,250 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:51,091 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:03,450 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:14,288 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:26,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:36,955 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:48,859 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:59,697 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:10,483 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:22,351 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:33,139 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:43,952 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:55,834 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:06,669 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:17,502 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:29,860 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:42,230 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:53,021 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:03,844 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:14,676 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:25,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:36,350 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:47,168 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:57,956 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:08,774 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:20,664 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:31,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:42,288 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:54,148 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:04,973 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:15,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:26,568 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:38,937 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:49,747 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:00,549 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:11,375 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:23,759 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:35,644 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:46,479 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:58,336 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:09,150 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:21,544 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:32,356 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:44,241 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:55,070 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:07,436 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:18,278 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:30,166 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:42,066 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:53,962 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:04,788 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:15,639 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:26,489 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:37,330 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:48,174 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:58,978 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:09,792 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:20,626 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:31,476 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:43,364 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:55,265 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:07,640 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:18,472 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:29,257 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:40,070 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:51,948 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:02,782 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:14,665 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:26,544 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:37,375 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:49,255 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:00,082 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:10,929 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:21,771 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:33,664 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:45,557 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:56,349 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:07,160 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:18,995 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:30,847 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:42,690 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:53,533 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:05,370 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:16,186 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:28,555 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:39,367 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:50,204 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:01,014 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:11,851 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:22,684 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:33,521 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:44,372 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:55,164 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:07,047 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:17,837 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:28,657 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:40,545 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:51,380 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:02,235 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:13,077 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:23,891 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:34,681 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:46,546 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:57,353 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:09,748 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:20,565 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:31,393 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:42,230 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:53,076 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:03,889 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:16,254 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:28,135 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:39,969 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:50,799 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:01,637 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:13,471 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:25,323 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:36,149 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:46,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:57,755 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:08,542 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:19,357 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:30,185 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:42,074 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:53,960 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:04,804 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:17,151 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:27,953 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:40,339 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:52,172 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:02,975 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:14,856 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:25,693 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:38,043 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:48,854 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:59,666 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:10,453 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:21,276 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:33,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:43,996 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:54,835 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:05,674 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:18,068 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:28,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:40,764 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:53,134 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:03,944 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:14,783 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:27,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:37,978 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:48,763 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:59,583 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:11,979 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:24,354 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:35,185 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:47,071 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:57,916 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:08,754 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:19,541 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:30,362 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:42,752 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:53,569 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:05,458 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:16,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:28,170 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:40,064 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:50,903 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:01,745 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:12,592 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:24,474 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:36,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:47,689 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:58,544 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:09,362 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:20,168 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:30,983 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:41,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:54,154 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:04,988 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:16,871 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:29,274 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:40,095 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:51,966 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:04,349 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:15,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:25,954 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:37,795 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:48,641 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:59,448 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:10,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:21,078 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:33,453 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:45,315 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:57,172 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:07,982 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:18,785 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:31,157 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:42,007 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:52,844 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:03,683 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:14,489 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:25,308 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:36,139 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:47,978 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:58,800 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:11,185 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:23,568 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:35,462 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:46,306 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:58,210 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:10,571 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:21,382 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:33,284 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:44,113 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:55,965 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:06,791 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:18,678 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:30,558 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:41,397 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:53,744 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:04,600 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:15,413 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:26,208 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:38,076 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:48,898 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:59,751 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:10,593 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:21,389 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:33,274 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:44,108 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:54,956 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:05,805 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:16,653 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:27,488 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:38,276 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:49,099 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:59,935 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:10,771 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:22,671 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:35,048 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:45,863 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:56,701 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:08,592 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:20,478 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:31,297 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:43,178 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:55,066 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:05,880 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:16,666 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:27,509 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:38,359 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:49,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:59,965 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:10,806 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:22,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:34,567 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:45,399 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:57,287 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:08,098 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:18,927 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:29,713 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:41,573 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:52,383 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:03,220 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:15,077 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:25,888 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:37,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:48,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:00,485 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:12,865 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:23,701 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:34,494 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:46,864 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:57,673 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:08,511 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:20,390 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:32,274 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:43,103 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:54,998 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:06,886 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:17,701 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:28,513 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:39,314 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:51,173 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:01,993 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:12,820 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:24,702 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:35,532 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:46,365 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:57,206 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:09,083 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:21,467 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:32,299 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:44,186 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:56,572 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:07,412 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:19,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:30,585 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:41,374 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:52,194 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:04,080 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:14,893 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:26,776 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:37,584 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:48,416 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:59,207 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:10,024 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:22,423 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:33,254 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:44,102 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:55,998 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:07,837 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:18,673 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:29,464 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:41,321 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:53,179 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:04,007 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:14,816 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:25,655 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:36,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:47,328 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:58,167 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:08,958 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:19,780 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:30,622 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:41,470 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:52,289 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:04,173 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:14,961 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:25,772 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:36,574 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:47,405 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:58,264 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:09,079 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:19,925 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:30,717 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:42,598 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:54,974 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:05,818 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:18,210 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:29,074 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:40,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:51,764 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:02,574 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:13,388 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:24,218 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:35,066 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:45,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:56,709 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:08,607 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:20,494 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:32,376 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:43,213 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:54,068 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:04,885 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:16,726 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:27,541 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:38,387 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:49,201 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:59,999 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:11,884 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:22,678 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:34,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:45,376 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:57,279 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:08,128 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:18,918 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:31,283 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:42,094 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:53,992 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:04,780 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:15,598 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:27,482 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:38,318 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:49,169 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:01,004 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:12,851 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:24,695 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:35,512 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:46,362 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:57,196 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:09,036 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:20,889 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:33,269 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:45,136 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:55,961 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:06,818 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:18,709 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:30,589 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:41,426 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:53,776 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:04,595 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:16,444 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:27,264 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:38,116 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:48,981 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:59,816 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:10,614 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:22,490 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:33,317 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:44,119 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:56,002 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:08,381 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:19,204 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:31,085 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:41,925 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:53,809 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:05,691 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:17,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:28,398 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:40,785 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:51,586 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:02,429 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:13,280 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:24,067 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:34,905 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:45,727 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:58,078 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:08,900 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:21,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:32,127 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:44,479 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:56,860 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:07,678 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:20,061 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:30,869 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:41,683 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:52,477 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:03,317 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:14,129 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:24,944 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:36,838 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:47,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:58,504 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:09,293 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:20,107 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:32,492 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:43,324 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:54,133 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:04,976 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:15,820 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:26,605 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:38,451 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:50,815 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:01,633 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:13,510 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:24,307 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:35,135 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:47,004 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:57,853 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:09,737 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:20,582 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:31,418 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:43,304 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:55,651 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:07,541 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:18,390 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:29,208 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:40,033 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:50,882 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:01,703 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:14,085 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:25,893 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:36,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:47,523 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:59,393 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:10,214 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:22,612 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:34,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:46,292 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:57,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:07,929 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:18,725 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:30,616 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:41,423 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:52,229 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:03,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:13,829 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:26,212 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:38,566 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:49,363 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:00,183 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:10,997 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:22,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:33,645 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:44,413 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:56,793 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:07,635 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:18,493 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:30,301 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:41,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:53,486 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:05,882 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:18,262 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:30,118 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:40,933 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:52,795 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:03,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:14,420 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:25,234 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:37,130 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:47,941 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:58,737 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:10,613 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:22,414 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:34,304 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:46,106 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:56,945 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:08,840 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:19,704 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:30,494 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:41,295 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:52,144 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:02,943 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:13,745 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:24,595 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:36,983 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:47,828 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:58,628 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:09,478 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:20,289 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:32,175 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:43,000 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:53,809 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:06,221 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:18,113 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:28,931 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:39,747 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:52,100 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:02,905 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:13,734 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:25,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:37,411 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:48,228 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:00,121 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:12,011 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:23,804 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:35,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:46,395 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:57,187 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:07,990 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:18,803 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:29,640 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:42,004 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:54,383 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:05,191 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:15,998 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:28,342 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:40,215 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:51,019 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:01,843 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:12,644 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:24,505 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:35,324 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:47,211 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:58,049 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:08,899 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:21,297 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:32,106 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:44,006 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:54,842 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:06,727 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:19,114 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:31,504 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:42,332 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:54,204 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:05,034 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:16,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:27,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:39,625 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:51,503 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:02,322 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:14,216 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:26,117 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:36,935 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:48,816 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:59,629 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:10,426 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:22,316 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:33,140 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:45,025 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:57,425 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:08,248 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:19,099 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:29,954 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:42,311 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:53,187 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:04,009 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:15,848 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:27,709 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:38,540 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:50,418 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:01,229 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:12,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:22,838 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:33,627 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:46,003 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:56,852 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:07,651 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:20,036 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:31,887 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:42,718 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:53,526 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:04,365 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:15,202 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:26,053 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:36,896 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:47,737 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:00,122 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:10,954 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:21,797 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:32,638 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:45,034 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:56,910 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:07,719 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:19,606 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:30,451 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:41,254 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:53,617 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:04,440 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:16,795 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:27,610 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:38,445 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:50,327 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:02,219 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:14,119 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:26,516 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:37,332 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:49,219 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:00,045 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:10,895 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:22,735 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:33,545 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:44,396 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:56,225 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:07,052 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:18,934 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:31,309 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:42,140 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:54,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:05,927 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:16,732 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:27,553 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:38,384 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:49,231 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:00,045 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:10,896 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:21,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:33,621 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:44,454 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:56,340 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:08,703 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:20,570 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:32,426 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:43,254 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:55,115 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:05,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:17,822 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:28,612 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:39,432 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:50,234 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:01,040 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:11,833 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:23,712 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:34,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:46,413 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:57,255 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:08,050 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:19,930 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:30,763 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:41,551 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:52,314 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:03,119 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:13,963 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:26,312 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:37,120 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:49,510 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:00,346 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:12,251 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:24,113 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:34,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:47,307 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:58,130 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:08,963 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:20,846 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:32,725 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:44,561 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:55,402 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:06,224 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:18,621 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:29,452 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:41,330 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:53,719 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:04,556 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:15,351 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:27,711 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:38,553 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:49,392 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:00,202 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:12,033 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:22,853 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:34,729 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:45,560 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:56,349 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:08,227 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:20,130 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:31,013 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:41,832 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:54,215 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:05,007 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:15,833 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:28,207 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:39,023 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:49,866 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:00,727 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:13,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:23,968 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:35,868 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:47,743 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:59,619 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:11,996 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:24,367 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:35,183 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:47,027 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:57,849 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:08,667 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:19,501 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:31,361 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:43,228 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:54,057 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:05,928 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:17,789 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:28,610 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:39,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:50,305 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:01,131 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:11,974 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:24,378 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:35,219 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:46,067 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:57,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:08,759 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:19,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:30,445 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:42,338 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:53,124 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:03,965 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:15,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:28,187 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:40,013 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:50,831 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:01,648 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:13,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:25,909 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:36,728 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:47,528 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:58,334 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:09,159 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:21,077 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:33,424 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:44,246 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:55,071 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:05,912 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:16,767 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:28,631 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:39,444 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:50,238 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:01,064 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:12,947 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:23,751 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:34,576 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:45,407 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:56,212 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:07,017 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:17,850 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:28,675 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:40,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:52,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:03,736 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:14,550 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:26,436 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:38,304 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:49,131 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:59,974 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:12,332 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:24,712 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:35,533 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:46,371 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:57,210 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:08,065 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:19,951 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:31,837 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:42,687 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:53,536 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:05,429 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:17,297 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:28,129 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:38,975 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:49,821 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:00,666 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:11,477 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:22,319 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:34,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:44,967 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:55,803 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:06,611 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:17,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:28,245 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:39,063 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:51,439 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:03,218 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:15,050 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:26,851 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:39,236 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:51,016 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:01,854 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:12,670 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:25,025 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:35,842 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:48,206 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:00,072 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:10,865 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:23,225 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:34,302 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:46,157 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:57,957 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:08,751 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:19,540 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:30,401 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:42,268 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:54,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:05,959 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:16,759 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:27,572 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:39,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:50,755 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:02,638 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:14,490 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:26,369 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:37,161 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:47,975 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:58,758 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:10,649 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:22,530 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:34,845 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:47,195 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:59,054 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:09,852 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:21,747 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:32,564 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:44,928 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:55,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:08,141 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:18,970 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:29,761 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:41,649 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:52,461 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:03,272 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:15,606 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:27,461 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:39,830 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:51,657 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:02,470 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:14,351 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:25,192 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:37,089 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:47,933 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:58,786 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:09,578 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:21,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:32,286 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:43,072 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:54,936 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:06,781 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:18,676 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:29,483 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:41,342 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:52,182 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:03,030 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:13,865 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:25,746 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:36,530 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:47,345 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:59,242 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:11,633 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:22,444 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:33,276 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:45,164 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:57,538 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:08,360 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:19,172 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:31,047 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:41,870 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:53,765 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:05,649 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:17,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:28,386 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:40,739 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:51,560 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:03,447 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:14,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:25,131 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:35,956 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:47,844 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:58,690 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:10,550 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:22,936 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:33,775 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:45,658 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:58,038 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:08,875 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:19,669 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:30,506 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:41,340 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:52,190 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:03,025 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:14,866 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:26,764 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:38,665 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:49,474 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:01,339 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:12,152 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:22,953 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:33,763 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:45,645 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:56,484 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:07,327 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:18,144 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:28,970 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:40,860 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:51,695 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:03,556 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:15,413 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:26,232 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:37,077 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:48,971 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:00,860 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:11,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:22,477 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:34,850 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:47,244 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:58,089 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:08,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:19,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:31,560 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:42,367 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:53,189 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:03,977 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:16,362 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:27,184 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:39,058 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:49,889 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:02,237 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:13,048 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:23,830 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:34,665 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:45,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:56,293 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:08,148 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:18,969 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:30,848 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:41,631 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:52,449 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:03,282 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:14,121 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:25,956 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:36,772 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:48,657 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:59,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:10,273 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:22,163 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:34,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:45,360 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:56,171 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:06,972 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:17,790 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:30,147 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:42,523 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:54,383 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:06,262 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:18,633 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:30,515 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:41,369 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:52,192 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:03,034 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:14,876 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:26,775 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:37,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:48,440 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:59,281 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:10,081 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:20,927 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:31,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:42,566 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:53,383 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:05,748 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:16,561 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:27,391 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:38,198 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:50,056 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:00,842 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:11,687 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:23,574 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:34,369 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:45,184 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:57,560 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:08,394 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:19,235 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:30,045 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:40,887 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:51,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:56,139 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:13:02,499 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:14,864 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:18,948 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 1.2s 2018-03-08 21:13:19,906 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.7s 2018-03-08 21:13:20,648 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.62s 2018-03-08 21:13:21,487 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.77s 2018-03-08 21:13:22,271 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.69s 2018-03-08 21:13:22,938 - octoprint.plugins.announcements - INFO - Loaded channel _m33fio from https://exploitkings.com/scripts/M33 Fio.xml in 0.59s 2018-03-08 21:13:25,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:26,300 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:13:26,380 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:13:26,682 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:13:31,455 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-03-08 21:13:31,569 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:13:38,041 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:48,871 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:59,722 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:10,538 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:22,378 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:33,188 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:44,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:44,548 - octoprint.plugins.softwareupdate - INFO - Starting update of enclosure to 4.02... 2018-03-08 21:14:53,889 - octoprint.plugins.softwareupdate - INFO - Update of enclosure to 4.02 successful! 2018-03-08 21:14:54,167 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:14:54,169 - octoprint.plugins.softwareupdate - INFO - Restarting... 2018-03-08 21:14:54,249 - octoprint.server - INFO - Shutting down... 2018-03-08 21:14:54,421 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:14:54,425 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:14:54,440 - octoprint.server - INFO - Goodbye! 2018-03-08 21:14:57,154 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:14:57,154 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-03-08 21:14:57,155 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:14:57,195 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:14:57,795 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:14:57,836 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:14:59,541 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 9 hook handlers 2018-03-08 21:14:59,668 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:14:59,669 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:14:59,945 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 9 hook handlers 2018-03-08 21:14:59,981 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:15:04,990 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:15:05,192 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:15:07,677 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:15:10,113 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:15:10,116 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2018-03-08 21:15:12,459 - octoprint.plugins.enclosure - WARNING - ######### settings not compatible ######### 2018-03-08 21:15:12,460 - octoprint.plugins.enclosure - WARNING - ######### current settings version None target settings version 4 ######### 2018-03-08 21:15:12,809 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (4.02) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:15:14,528 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:15:14,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:15:14,552 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:15:14,560 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:15:14,715 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:15:14,776 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:15:14,778 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:15:14,778 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:15:14,784 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:15:15,008 - octoprint.plugins.octolapse - INFO - Octolapse is getting update information. 2018-03-08 21:15:15,700 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:15:15,742 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:15:15,769 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:15:15,801 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:15:15,780 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:15:15,883 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-03-08 21:15:16,020 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:15:16,654 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:15:16,685 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:15:17,488 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-03-08 21:15:17,730 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:15:17,837 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6" 2018-03-08 21:15:18,561 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:15:18,859 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-03-08 21:15:19,016 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-03-08 21:15:19,368 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:15:22,041 - tornado.access - WARNING - 404 GET /plugin/enclosure/getUpdateBtnStatus (127.0.0.1) 43.38ms 2018-03-08 21:15:22,055 - tornado.access - WARNING - 404 GET /plugin/enclosure/getEnclosureSetTemperature (127.0.0.1) 10.78ms 2018-03-08 21:15:25,177 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:15:25,382 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-03-08 21:15:25,497 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:15:36,745 - octoprint.server.preemptive_cache - INFO - ... done in 20.09s 2018-03-08 21:15:36,745 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:15:41,265 - octoprint.server.preemptive_cache - INFO - ... done in 4.52s 2018-03-08 21:15:48,905 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:15:49,878 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:16:57,656 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:02,286 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:06,716 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:13,434 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:16,989 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:36,207 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:39,837 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:22:01,502 - octoprint.server - INFO - Shutting down... 2018-03-08 21:22:01,982 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:22:01,990 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:22:01,992 - octoprint.server - INFO - Goodbye! 2018-03-08 21:22:04,908 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:22:04,908 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:22:04,910 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:22:04,960 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:22:04,963 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:22:05,004 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:22:06,130 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:22:06,548 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:22:06,596 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:22:06,643 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:22:06,674 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:22:06,700 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:22:06,719 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:22:06,737 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:22:06,878 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:22:07,036 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:22:07,046 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:22:07,213 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:22:07,239 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:22:07,239 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:22:07,515 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:22:07,551 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:22:12,614 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:22:12,858 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2018-03-08 21:22:15,354 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:22:17,792 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:22:17,796 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-03-08 21:22:17,806 - octoprint.plugin.core - INFO - 20 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (4.02) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:22:19,599 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:22:27,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:22:27,966 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:22:27,982 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:22:27,983 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:22:28,172 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:22:28,353 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:22:28,354 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:22:28,355 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:22:28,360 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:22:28,490 - octoprint.plugins.octolapse - INFO - Octolapse is getting update information. 2018-03-08 21:22:28,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:22:28,798 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:22:29,507 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:22:29,519 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:22:29,537 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:22:29,539 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:22:29,555 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:22:29,563 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:22:29,584 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:22:29,587 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:22:29,589 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:22:29,755 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:22:30,580 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:22:30,673 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:22:30,705 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:22:32,110 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:22:32,266 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:22:38,010 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:22:40,730 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-03-08 21:22:40,777 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:22:48,149 - octoprint.server.preemptive_cache - INFO - ... done in 17.48s 2018-03-08 21:22:48,150 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:22:54,007 - octoprint.server.preemptive_cache - INFO - ... done in 5.86s 2018-03-08 21:22:58,807 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:23:53,152 - octoprint.plugins.pluginmanager - INFO - Installing plugin from https://github.com/FormerLurker/Octolapse/archive/nopause.zip 2018-03-08 21:23:53,446 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:23:53,840 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:23:53,855 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:23:53,888 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:23:53,910 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:23:53,931 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:23:53,943 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:23:53,954 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:23:54,076 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:23:54,152 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:23:57,689 - octoprint.plugins.pluginmanager - ERROR - Installing the plugin from https://github.com/FormerLurker/Octolapse/archive/nopause.zip failed, could not parse output from pip. See plugin_pluginmanager_console.log for generated output 2018-03-08 21:24:11,277 - octoprint.plugins.pluginmanager - INFO - Installing plugin from https://github.com/FormerLurker/Octolapse/archive/NoPause.zip 2018-03-08 21:24:11,430 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:24:11,981 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:24:11,998 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:24:12,031 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:24:12,054 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:24:12,074 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:24:12,087 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:24:12,100 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:24:12,226 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:24:12,302 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:24:20,023 - octoprint.plugins.pluginmanager - INFO - Plugin to be installed from https://github.com/FormerLurker/Octolapse/archive/NoPause.zip was already installed, forcing a reinstall 2018-03-08 21:24:29,633 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:24:30,074 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:24:30,088 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:24:30,124 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:24:30,146 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:24:30,169 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:24:30,182 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:24:30,195 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:24:30,485 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:24:30,570 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:24:30,573 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:24:30,866 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:24:30,869 - octoprint.plugin.core - INFO - 20 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (4.02) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:24:30,870 - octoprint.plugins.pluginmanager - INFO - The plugin was installed successfully: Octolapse Plugin, version 0.1.0 2018-03-08 21:24:43,537 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2018-03-08 21:24:43,666 - octoprint.server - INFO - Shutting down... 2018-03-08 21:24:44,495 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:24:44,498 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:24:44,515 - octoprint.server - INFO - Goodbye! 2018-03-08 21:24:47,234 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:24:47,235 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:24:47,235 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:24:47,276 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:24:47,278 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:24:47,329 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:24:48,477 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:24:48,897 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:24:48,917 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:24:48,961 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:24:48,988 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:24:49,014 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:24:49,031 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:24:49,048 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:24:49,189 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:24:49,346 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:24:49,356 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:24:49,451 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:24:49,478 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:24:49,479 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:24:49,832 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:24:49,870 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:24:54,919 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:24:55,026 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:24:57,473 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:24:59,937 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:24:59,942 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-03-08 21:24:59,986 - octoprint.plugin.core - INFO - 20 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (4.02) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:25:01,777 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:25:01,785 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:25:01,801 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:25:01,810 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:25:01,810 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:25:01,971 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:25:02,336 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:25:02,337 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:25:02,338 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:25:02,343 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:25:02,527 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:25:02,652 - octoprint.plugins.octolapse - INFO - Octolapse is getting update information. 2018-03-08 21:25:02,701 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:25:03,365 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:25:03,366 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:25:03,370 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:25:03,386 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:25:03,403 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:25:03,476 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:25:03,521 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:25:03,522 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:25:03,592 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:25:04,202 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:25:04,330 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:25:04,453 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:25:09,442 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:25:11,381 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:25:21,886 - octoprint.server.preemptive_cache - INFO - ... done in 17.43s 2018-03-08 21:25:21,887 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:25:26,571 - octoprint.server.preemptive_cache - INFO - ... done in 4.68s 2018-03-08 21:25:49,933 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:25:49,940 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:25:49,946 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:25:49,948 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:25:49,952 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:14,486 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:27:17,413 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:27:23,174 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:27:23,179 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:23,185 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:23,186 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:23,190 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:43,233 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:27:43,253 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:27:43,256 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:43,269 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:43,271 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:43,317 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:47,536 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:27:47,548 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:47,554 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:47,555 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:47,559 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:50,488 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:27:50,498 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:50,504 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:50,505 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:50,519 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:56,257 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:27:56,288 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:27:56,291 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:56,296 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:56,295 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:56,302 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:28:59,417 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:28:59,436 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:28:59,441 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:28:59,453 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:28:59,452 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:28:59,458 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:28:59,963 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:28:59,978 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:28:59,981 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:28:59,986 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:28:59,985 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:00,000 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:00,260 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:00,274 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:00,277 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:00,283 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:00,283 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:00,300 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:00,555 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:00,570 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:00,573 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:00,580 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:00,579 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:00,595 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:00,654 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:00,668 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:00,671 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:00,681 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:00,680 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:00,691 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:00,992 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,006 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,009 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,014 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,014 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:01,028 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:01,086 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,102 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,105 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,113 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,113 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:01,127 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:01,429 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,448 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,455 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,459 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:01,461 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,465 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:01,532 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,560 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,563 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,569 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,671 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline" 2018-03-08 21:29:01,727 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,753 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,755 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,760 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:01,760 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,765 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:02,072 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,103 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,107 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,160 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,190 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,192 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,199 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline" 2018-03-08 21:29:02,255 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,285 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,289 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,348 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,364 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,374 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,380 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:02,379 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:02,422 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:02,690 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,722 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,726 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,781 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,796 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,800 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,806 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:02,813 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:02,859 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:43,323 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:43,342 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:43,345 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:43,350 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:43,352 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:43,354 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:44,543 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:44,560 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:44,562 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:44,567 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:44,569 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:44,581 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:44,913 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:44,927 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:44,929 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:44,935 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:44,936 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:44,939 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:45,399 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:45,416 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:45,418 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:45,423 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:45,433 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:45,436 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:48,179 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:48,199 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:48,201 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:48,215 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:48,216 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:48,220 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:48,889 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:48,906 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:48,908 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:48,918 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:48,918 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:49,000 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:51,039 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:51,058 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:51,070 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:51,074 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:51,074 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:51,080 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:51,915 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:51,930 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:51,933 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:51,939 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:51,938 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:51,943 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:31:12,450 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:31:12,735 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:31:15,477 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2018-03-08 21:31:15,642 - octoprint.server - INFO - Shutting down... 2018-03-08 21:31:16,334 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:31:16,337 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:31:16,352 - octoprint.server - INFO - Goodbye! 2018-03-08 21:31:19,120 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:31:19,121 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:31:19,121 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:31:19,161 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:31:19,775 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:31:19,819 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:31:21,022 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:31:21,444 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:31:21,465 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:31:21,511 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:31:21,539 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:31:21,566 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:31:21,584 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:31:21,601 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:31:21,620 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:31:21,790 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:31:21,799 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 7 hook handlers 2018-03-08 21:31:21,896 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:31:21,923 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:31:21,924 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:31:22,201 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 7 hook handlers 2018-03-08 21:31:22,240 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:31:27,329 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:31:27,431 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:31:29,938 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:31:32,401 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:31:32,405 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2018-03-08 21:31:32,412 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:31:34,068 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:31:34,076 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:31:34,093 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:31:34,101 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:31:34,101 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:31:34,252 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:31:34,558 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:31:34,559 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:31:34,560 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:31:34,567 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:31:34,662 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:31:34,665 - octoprint.plugins.octolapse - INFO - Octolapse is getting update information. 2018-03-08 21:31:34,716 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:31:34,756 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:31:34,795 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:31:34,798 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:31:34,927 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:31:34,928 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:31:35,936 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:31:36,075 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:31:36,093 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:31:42,146 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:31:43,542 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:31:54,703 - octoprint.server.preemptive_cache - INFO - ... done in 18.61s 2018-03-08 21:31:54,704 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:31:59,179 - octoprint.server.preemptive_cache - INFO - ... done in 4.48s 2018-03-08 21:33:16,529 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:33:18,724 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:33:24,436 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:33:24,460 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:33:24,467 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:33:24,470 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:33:24,471 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:33:24,577 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:33:51,172 - octoprint.server.api.system - INFO - Performing command for core:restart_safe: sudo service octoprint restart 2018-03-08 21:33:51,609 - octoprint.server - INFO - Shutting down... 2018-03-08 21:33:52,435 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:33:52,439 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:33:52,453 - octoprint.server - INFO - Goodbye! 2018-03-08 21:33:55,214 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:33:55,215 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:33:55,215 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-03-08 21:33:55,216 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:33:55,255 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:33:55,258 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:33:55,307 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:33:56,470 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:33:56,916 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:33:56,938 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:33:56,983 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:33:57,012 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:33:57,039 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:33:57,056 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:33:57,073 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:33:57,091 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:33:57,206 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:33:57,218 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 8 mixin implementations, 4 hook handlers 2018-03-08 21:33:57,318 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:33:57,344 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:33:57,344 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:33:57,640 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 8 mixin implementations, 4 hook handlers 2018-03-08 21:33:57,773 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:34:02,836 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:34:02,938 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:34:05,366 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:34:07,904 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:34:07,907 - octoprint.plugin.core - INFO - Initialized 8 plugin implementation(s) 2018-03-08 21:34:07,963 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | !Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:34:09,632 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:34:09,641 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:34:09,657 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:34:09,665 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:34:09,797 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:34:09,821 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:34:09,822 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:34:09,823 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:34:09,828 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:34:09,842 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:34:09,953 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:34:10,125 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:34:10,144 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:34:10,154 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:34:10,196 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-03-08 21:34:10,197 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:34:10,876 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:34:11,211 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:34:11,222 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:34:11,378 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:34:18,960 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:34:27,657 - octoprint.server.preemptive_cache - INFO - ... done in 16.44s 2018-03-08 21:34:27,658 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:34:34,832 - octoprint.server.preemptive_cache - INFO - ... done in 7.17s 2018-03-08 21:34:35,377 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:34:37,044 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:34:43,039 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:34:43,057 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:34:43,059 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:34:43,064 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:34:43,062 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:34:43,080 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:46:24,750 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:46:24,771 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:46:24,776 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:46:24,786 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:46:24,787 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:46:24,790 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:46:31,178 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:46:31,194 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:46:31,196 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:46:31,200 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:46:31,201 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:46:31,215 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:46:44,364 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-03-08 21:46:44,543 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:46:44,619 - octoprint.server - INFO - Shutting down... 2018-03-08 21:46:45,567 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:46:46,962 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:46:46,991 - octoprint.server - INFO - Goodbye! 2018-03-08 21:46:55,468 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:46:55,471 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:46:55,471 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:46:55,542 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist 2018-03-08 21:46:55,641 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:46:57,886 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:46:58,391 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:46:58,454 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:46:58,533 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:46:58,570 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:46:58,603 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:46:58,627 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:46:58,651 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:46:58,676 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:46:58,945 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:46:58,955 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 7 hook handlers 2018-03-08 21:46:59,082 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:46:59,137 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:46:59,137 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:46:59,426 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 7 hook handlers 2018-03-08 21:46:59,467 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:47:14,566 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:47:14,678 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:47:17,544 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:47:20,005 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:47:20,009 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2018-03-08 21:47:20,017 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:47:21,722 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:47:21,732 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:47:21,747 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:47:21,762 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:47:21,763 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:47:21,959 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:47:21,975 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:47:21,976 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:47:21,977 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event 2018-03-08 21:47:21,978 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:47:22,066 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:47:22,149 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:47:22,193 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:47:22,197 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:47:22,263 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:47:22,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:47:22,998 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:47:23,071 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:47:23,146 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:47:23,311 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:47:23,369 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:47:24,087 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:47:31,005 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:47:41,362 - octoprint.server.preemptive_cache - INFO - ... done in 18.05s 2018-03-08 21:47:41,362 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:47:45,811 - octoprint.server.preemptive_cache - INFO - ... done in 4.45s 2018-03-08 22:01:59,084 - octoprint.server.heartbeat - INFO - Server heartbeat <3 2018-03-08 22:03:32,895 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 22:03:35,503 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 22:03:39,241 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 22:03:39,279 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 22:03:39,282 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 22:03:39,287 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 22:03:39,287 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 22:03:39,428 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 22:04:03,395 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 22:04:03,411 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 22:04:03,415 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 22:04:03,418 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 22:04:03,419 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 22:04:03,423 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)"
AttributeError
def __init__(self, duration): """Initialize a timeout with given duration""" self.is_infinite = duration is None self.is_non_blocking = duration == 0 self.duration = duration if duration is not None: self.target_time = monotonic.monotonic() + duration else: self.target_time = None
def __init__(self, path, target): self.finished = threading.Event() self.finished.clear() self.comm = None self.error = False self.started = False self._path = path self._target = target self._state = None
https://github.com/OctoPrint/OctoPrint/issues/2468
2018-03-08 16:49:29,420 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2018-03-08 16:49:29,421 - octoprint.server - INFO - OctoPrint 1.3.6 2018-03-08 16:49:29,424 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (3.51) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 16:49:29,444 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 16:49:29,445 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2018-03-08 16:49:29,416 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:49:41,788 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:49:52,602 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:03,390 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:14,207 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:25,039 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:35,879 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:46,725 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:50:57,516 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:08,319 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:19,129 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:31,018 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:41,877 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:51:52,703 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:03,518 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:14,307 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:25,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:36,999 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:47,833 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:52:58,633 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:11,009 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:21,832 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:33,695 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:44,508 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:53:55,298 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:07,196 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:18,026 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:28,811 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:39,622 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:54:50,412 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:02,243 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:14,575 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:25,389 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:36,197 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:47,004 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:55:58,842 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:09,649 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:20,487 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:31,326 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:43,209 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:56:55,602 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:06,425 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:17,259 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:28,108 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:38,948 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:57:50,835 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:02,703 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:15,080 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:25,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:36,689 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:47,502 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:58:58,329 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:09,124 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:19,944 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:32,300 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:43,097 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 16:59:53,914 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:05,810 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:17,699 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:28,550 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:40,432 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:00:51,261 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:02,101 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:12,896 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:23,731 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:35,617 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:46,402 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:01:57,213 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:09,100 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:19,908 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:30,702 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:41,516 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:02:52,314 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:03,127 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:13,949 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:24,789 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:35,632 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:47,515 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:03:58,352 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:09,188 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:19,986 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:32,372 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:43,212 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:04:54,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:04,816 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:15,641 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:26,490 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:37,283 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:05:49,135 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:01,506 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:12,345 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:23,147 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:35,022 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:46,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:06:57,736 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:08,587 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:19,428 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:30,270 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:41,059 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:07:52,927 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:04,805 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:15,637 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:27,524 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:39,403 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:08:50,246 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:01,046 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:12,919 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:23,750 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:35,623 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:46,452 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:09:57,289 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:09,121 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:19,919 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:30,760 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:41,609 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:10:52,419 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:03,234 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:15,112 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:25,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:37,783 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:11:49,647 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:00,498 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:11,328 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:23,209 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:34,017 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:46,404 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:12:57,240 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:09,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:21,010 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:32,854 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:43,669 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:13:54,513 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:05,356 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:16,195 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:28,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:38,858 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:14:49,689 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:02,064 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:12,911 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:23,750 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:34,563 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:46,431 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:15:58,260 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:10,112 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:20,961 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:31,804 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:42,639 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:16:53,430 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:04,242 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:16,120 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:26,943 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:37,741 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:48,554 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:17:59,396 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:10,234 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:21,025 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:32,887 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:43,718 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:18:54,523 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:06,908 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:17,742 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:28,548 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:39,355 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:19:50,144 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:02,508 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:13,316 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:24,100 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:34,913 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:47,303 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:20:58,131 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:08,935 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:19,758 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:30,592 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:41,428 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:21:53,312 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:04,154 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:16,012 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:26,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:37,645 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:22:50,007 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:00,835 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:12,726 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:23,558 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:34,364 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:45,190 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:23:57,022 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:09,397 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:21,231 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:33,609 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:44,424 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:24:56,250 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:08,617 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:19,423 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:31,318 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:42,109 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:25:52,936 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:05,311 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:17,716 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:30,083 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:40,907 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:26:51,744 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:02,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:13,361 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:24,165 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:36,537 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:47,343 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:27:58,136 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:10,019 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:20,845 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:31,634 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:43,523 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:28:54,365 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:06,221 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:18,578 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:29,401 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:40,201 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:29:51,013 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:03,415 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:14,257 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:26,157 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:36,977 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:47,819 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:30:58,610 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:10,473 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:21,298 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:32,122 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:44,019 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:31:54,826 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:07,197 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:18,008 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:28,851 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:39,702 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:32:50,526 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:02,417 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:13,229 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:25,120 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:35,945 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:46,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:33:57,551 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:09,435 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:21,807 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:32,652 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:44,541 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:34:56,421 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:08,321 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:19,134 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:29,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:41,786 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:35:53,647 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:05,536 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:17,933 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:28,765 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:39,602 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:36:50,408 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:01,200 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:13,075 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:23,901 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:34,735 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:45,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:37:56,352 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:08,242 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:20,626 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:33,027 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:43,859 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:38:54,653 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:06,529 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:17,373 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:29,702 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:40,511 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:39:51,350 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:02,159 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:12,952 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:24,825 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:35,612 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:46,424 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:40:57,272 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:09,135 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:19,928 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:30,749 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:41,590 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:41:52,444 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:03,240 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:14,057 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:25,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:36,771 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:47,611 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:42:58,461 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:10,823 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:21,623 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:32,437 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:44,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:43:56,145 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:08,525 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:19,361 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:30,220 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:41,008 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:44:51,818 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:02,664 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:13,511 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:24,312 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:35,136 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:45,973 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:45:56,811 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:07,653 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:19,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:30,318 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:41,110 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:46:51,938 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:02,740 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:13,565 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:24,415 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:35,265 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:47,151 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:47:59,035 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:09,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:21,726 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:32,569 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:43,422 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:48:54,269 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:06,600 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:17,410 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:28,251 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:40,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:49:50,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:01,776 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:14,140 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:24,950 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:36,850 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:50:48,734 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:01,130 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:11,959 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:23,839 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:34,619 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:45,437 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:51:56,271 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:08,626 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:20,531 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:31,315 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:42,128 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:52:52,978 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:03,821 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:14,655 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:26,543 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:38,431 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:53:49,256 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:01,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:13,049 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:25,432 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:36,216 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:47,045 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:54:57,875 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:08,705 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:20,561 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:32,939 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:43,771 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:55:55,655 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:07,550 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:18,369 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:29,213 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:41,053 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:56:51,850 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:02,638 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:13,473 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:24,314 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:35,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:45,928 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:57:56,749 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:08,648 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:19,476 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:30,270 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:41,097 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:58:51,912 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:04,268 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:16,157 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:28,038 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:38,827 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 17:59:49,665 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:01,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:12,338 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:23,159 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:35,042 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:46,887 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:00:58,758 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:10,654 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:21,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:32,244 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:43,057 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:01:53,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:05,735 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:16,584 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:27,373 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:39,250 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:02:51,091 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:03,450 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:14,288 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:26,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:36,955 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:48,859 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:03:59,697 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:10,483 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:22,351 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:33,139 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:43,952 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:04:55,834 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:06,669 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:17,502 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:29,860 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:42,230 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:05:53,021 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:03,844 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:14,676 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:25,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:36,350 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:47,168 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:06:57,956 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:08,774 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:20,664 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:31,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:42,288 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:07:54,148 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:04,973 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:15,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:26,568 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:38,937 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:08:49,747 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:00,549 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:11,375 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:23,759 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:35,644 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:46,479 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:09:58,336 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:09,150 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:21,544 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:32,356 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:44,241 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:10:55,070 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:07,436 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:18,278 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:30,166 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:42,066 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:11:53,962 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:04,788 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:15,639 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:26,489 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:37,330 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:48,174 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:12:58,978 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:09,792 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:20,626 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:31,476 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:43,364 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:13:55,265 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:07,640 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:18,472 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:29,257 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:40,070 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:14:51,948 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:02,782 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:14,665 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:26,544 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:37,375 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:15:49,255 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:00,082 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:10,929 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:21,771 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:33,664 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:45,557 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:16:56,349 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:07,160 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:18,995 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:30,847 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:42,690 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:17:53,533 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:05,370 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:16,186 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:28,555 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:39,367 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:18:50,204 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:01,014 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:11,851 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:22,684 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:33,521 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:44,372 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:19:55,164 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:07,047 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:17,837 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:28,657 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:40,545 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:20:51,380 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:02,235 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:13,077 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:23,891 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:34,681 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:46,546 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:21:57,353 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:09,748 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:20,565 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:31,393 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:42,230 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:22:53,076 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:03,889 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:16,254 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:28,135 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:39,969 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:23:50,799 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:01,637 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:13,471 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:25,323 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:36,149 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:46,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:24:57,755 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:08,542 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:19,357 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:30,185 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:42,074 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:25:53,960 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:04,804 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:17,151 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:27,953 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:40,339 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:26:52,172 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:02,975 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:14,856 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:25,693 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:38,043 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:48,854 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:27:59,666 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:10,453 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:21,276 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:33,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:43,996 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:28:54,835 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:05,674 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:18,068 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:28,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:40,764 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:29:53,134 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:03,944 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:14,783 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:27,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:37,978 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:48,763 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:30:59,583 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:11,979 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:24,354 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:35,185 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:47,071 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:31:57,916 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:08,754 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:19,541 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:30,362 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:42,752 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:32:53,569 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:05,458 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:16,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:28,170 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:40,064 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:33:50,903 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:01,745 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:12,592 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:24,474 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:36,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:47,689 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:34:58,544 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:09,362 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:20,168 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:30,983 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:41,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:35:54,154 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:04,988 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:16,871 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:29,274 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:40,095 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:36:51,966 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:04,349 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:15,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:25,954 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:37,795 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:48,641 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:37:59,448 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:10,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:21,078 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:33,453 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:45,315 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:38:57,172 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:07,982 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:18,785 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:31,157 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:42,007 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:39:52,844 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:03,683 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:14,489 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:25,308 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:36,139 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:47,978 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:40:58,800 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:11,185 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:23,568 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:35,462 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:46,306 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:41:58,210 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:10,571 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:21,382 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:33,284 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:44,113 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:42:55,965 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:06,791 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:18,678 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:30,558 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:41,397 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:43:53,744 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:04,600 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:15,413 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:26,208 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:38,076 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:48,898 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:44:59,751 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:10,593 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:21,389 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:33,274 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:44,108 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:45:54,956 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:05,805 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:16,653 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:27,488 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:38,276 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:49,099 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:46:59,935 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:10,771 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:22,671 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:35,048 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:45,863 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:47:56,701 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:08,592 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:20,478 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:31,297 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:43,178 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:48:55,066 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:05,880 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:16,666 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:27,509 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:38,359 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:49,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:49:59,965 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:10,806 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:22,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:34,567 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:45,399 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:50:57,287 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:08,098 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:18,927 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:29,713 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:41,573 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:51:52,383 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:03,220 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:15,077 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:25,888 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:37,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:52:48,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:00,485 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:12,865 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:23,701 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:34,494 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:46,864 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:53:57,673 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:08,511 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:20,390 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:32,274 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:43,103 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:54:54,998 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:06,886 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:17,701 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:28,513 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:39,314 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:55:51,173 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:01,993 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:12,820 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:24,702 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:35,532 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:46,365 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:56:57,206 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:09,083 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:21,467 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:32,299 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:44,186 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:57:56,572 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:07,412 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:19,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:30,585 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:41,374 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:58:52,194 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:04,080 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:14,893 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:26,776 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:37,584 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:48,416 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 18:59:59,207 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:10,024 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:22,423 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:33,254 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:44,102 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:00:55,998 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:07,837 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:18,673 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:29,464 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:41,321 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:01:53,179 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:04,007 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:14,816 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:25,655 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:36,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:47,328 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:02:58,167 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:08,958 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:19,780 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:30,622 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:41,470 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:03:52,289 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:04,173 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:14,961 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:25,772 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:36,574 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:47,405 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:04:58,264 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:09,079 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:19,925 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:30,717 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:42,598 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:05:54,974 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:05,818 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:18,210 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:29,074 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:40,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:06:51,764 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:02,574 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:13,388 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:24,218 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:35,066 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:45,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:07:56,709 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:08,607 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:20,494 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:32,376 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:43,213 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:08:54,068 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:04,885 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:16,726 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:27,541 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:38,387 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:49,201 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:09:59,999 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:11,884 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:22,678 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:34,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:45,376 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:10:57,279 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:08,128 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:18,918 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:31,283 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:42,094 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:11:53,992 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:04,780 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:15,598 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:27,482 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:38,318 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:12:49,169 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:01,004 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:12,851 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:24,695 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:35,512 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:46,362 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:13:57,196 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:09,036 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:20,889 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:33,269 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:45,136 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:14:55,961 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:06,818 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:18,709 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:30,589 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:41,426 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:15:53,776 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:04,595 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:16,444 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:27,264 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:38,116 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:48,981 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:16:59,816 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:10,614 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:22,490 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:33,317 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:44,119 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:17:56,002 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:08,381 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:19,204 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:31,085 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:41,925 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:18:53,809 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:05,691 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:17,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:28,398 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:40,785 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:19:51,586 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:02,429 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:13,280 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:24,067 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:34,905 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:45,727 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:20:58,078 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:08,900 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:21,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:32,127 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:44,479 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:21:56,860 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:07,678 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:20,061 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:30,869 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:41,683 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:22:52,477 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:03,317 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:14,129 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:24,944 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:36,838 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:47,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:23:58,504 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:09,293 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:20,107 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:32,492 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:43,324 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:24:54,133 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:04,976 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:15,820 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:26,605 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:38,451 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:25:50,815 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:01,633 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:13,510 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:24,307 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:35,135 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:47,004 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:26:57,853 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:09,737 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:20,582 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:31,418 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:43,304 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:27:55,651 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:07,541 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:18,390 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:29,208 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:40,033 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:28:50,882 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:01,703 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:14,085 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:25,893 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:36,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:47,523 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:29:59,393 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:10,214 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:22,612 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:34,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:46,292 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:30:57,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:07,929 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:18,725 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:30,616 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:41,423 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:31:52,229 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:03,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:13,829 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:26,212 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:38,566 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:32:49,363 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:00,183 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:10,997 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:22,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:33,645 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:44,413 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:33:56,793 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:07,635 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:18,493 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:30,301 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:41,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:34:53,486 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:05,882 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:18,262 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:30,118 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:40,933 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:35:52,795 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:03,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:14,420 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:25,234 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:37,130 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:47,941 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:36:58,737 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:10,613 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:22,414 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:34,304 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:46,106 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:37:56,945 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:08,840 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:19,704 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:30,494 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:41,295 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:38:52,144 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:02,943 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:13,745 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:24,595 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:36,983 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:47,828 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:39:58,628 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:09,478 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:20,289 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:32,175 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:43,000 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:40:53,809 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:06,221 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:18,113 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:28,931 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:39,747 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:41:52,100 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:02,905 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:13,734 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:25,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:37,411 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:42:48,228 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:00,121 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:12,011 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:23,804 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:35,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:46,395 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:43:57,187 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:07,990 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:18,803 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:29,640 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:42,004 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:44:54,383 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:05,191 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:15,998 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:28,342 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:40,215 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:45:51,019 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:01,843 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:12,644 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:24,505 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:35,324 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:47,211 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:46:58,049 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:08,899 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:21,297 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:32,106 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:44,006 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:47:54,842 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:06,727 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:19,114 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:31,504 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:42,332 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:48:54,204 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:05,034 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:16,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:27,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:39,625 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:49:51,503 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:02,322 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:14,216 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:26,117 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:36,935 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:48,816 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:50:59,629 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:10,426 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:22,316 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:33,140 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:45,025 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:51:57,425 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:08,248 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:19,099 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:29,954 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:42,311 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:52:53,187 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:04,009 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:15,848 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:27,709 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:38,540 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:53:50,418 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:01,229 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:12,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:22,838 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:33,627 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:46,003 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:54:56,852 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:07,651 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:20,036 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:31,887 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:42,718 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:55:53,526 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:04,365 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:15,202 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:26,053 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:36,896 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:56:47,737 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:00,122 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:10,954 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:21,797 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:32,638 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:45,034 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:57:56,910 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:07,719 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:19,606 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:30,451 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:41,254 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:58:53,617 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:04,440 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:16,795 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:27,610 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:38,445 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 19:59:50,327 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:02,219 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:14,119 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:26,516 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:37,332 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:00:49,219 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:00,045 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:10,895 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:22,735 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:33,545 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:44,396 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:01:56,225 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:07,052 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:18,934 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:31,309 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:42,140 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:02:54,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:05,927 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:16,732 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:27,553 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:38,384 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:03:49,231 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:00,045 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:10,896 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:21,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:33,621 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:44,454 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:04:56,340 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:08,703 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:20,570 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:32,426 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:43,254 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:05:55,115 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:05,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:17,822 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:28,612 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:39,432 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:06:50,234 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:01,040 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:11,833 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:23,712 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:34,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:46,413 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:07:57,255 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:08,050 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:19,930 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:30,763 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:41,551 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:08:52,314 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:03,119 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:13,963 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:26,312 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:37,120 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:09:49,510 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:00,346 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:12,251 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:24,113 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:34,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:47,307 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:10:58,130 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:08,963 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:20,846 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:32,725 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:44,561 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:11:55,402 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:06,224 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:18,621 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:29,452 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:41,330 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:12:53,719 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:04,556 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:15,351 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:27,711 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:38,553 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:13:49,392 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:00,202 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:12,033 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:22,853 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:34,729 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:45,560 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:14:56,349 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:08,227 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:20,130 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:31,013 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:41,832 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:15:54,215 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:05,007 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:15,833 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:28,207 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:39,023 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:16:49,866 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:00,727 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:13,125 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:23,968 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:35,868 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:47,743 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:17:59,619 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:11,996 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:24,367 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:35,183 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:47,027 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:18:57,849 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:08,667 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:19,501 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:31,361 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:43,228 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:19:54,057 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:05,928 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:17,789 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:28,610 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:39,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:20:50,305 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:01,131 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:11,974 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:24,378 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:35,219 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:46,067 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:21:57,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:08,759 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:19,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:30,445 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:42,338 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:22:53,124 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:03,965 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:15,855 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:28,187 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:40,013 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:23:50,831 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:01,648 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:13,527 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:25,909 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:36,728 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:47,528 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:24:58,334 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:09,159 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:21,077 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:33,424 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:44,246 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:25:55,071 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:05,912 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:16,767 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:28,631 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:39,444 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:26:50,238 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:01,064 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:12,947 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:23,751 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:34,576 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:45,407 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:27:56,212 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:07,017 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:17,850 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:28,675 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:40,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:28:52,924 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:03,736 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:14,550 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:26,436 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:38,304 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:49,131 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:29:59,974 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:12,332 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:24,712 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:35,533 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:46,371 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:30:57,210 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:08,065 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:19,951 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:31,837 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:42,687 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:31:53,536 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:05,429 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:17,297 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:28,129 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:38,975 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:32:49,821 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:00,666 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:11,477 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:22,319 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:34,153 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:44,967 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:33:55,803 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:06,611 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:17,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:28,245 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:39,063 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:34:51,439 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:03,218 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:15,050 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:26,851 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:39,236 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:35:51,016 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:01,854 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:12,670 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:25,025 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:35,842 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:36:48,206 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:00,072 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:10,865 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:23,225 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:34,302 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:46,157 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:37:57,957 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:08,751 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:19,540 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:30,401 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:42,268 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:38:54,137 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:05,959 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:16,759 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:27,572 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:39,940 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:39:50,755 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:02,638 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:14,490 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:26,369 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:37,161 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:47,975 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:40:58,758 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:10,649 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:22,530 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:34,845 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:47,195 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:41:59,054 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:09,852 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:21,747 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:32,564 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:44,928 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:42:55,738 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:08,141 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:18,970 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:29,761 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:41,649 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:43:52,461 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:03,272 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:15,606 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:27,461 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:39,830 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:44:51,657 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:02,470 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:14,351 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:25,192 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:37,089 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:47,933 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:45:58,786 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:09,578 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:21,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:32,286 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:43,072 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:46:54,936 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:06,781 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:18,676 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:29,483 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:41,342 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:47:52,182 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:03,030 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:13,865 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:25,746 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:36,530 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:47,345 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:48:59,242 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:11,633 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:22,444 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:33,276 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:45,164 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:49:57,538 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:08,360 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:19,172 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:31,047 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:41,870 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:50:53,765 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:05,649 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:17,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:28,386 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:40,739 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:51:51,560 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:03,447 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:14,285 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:25,131 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:35,956 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:47,844 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:52:58,690 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:10,550 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:22,936 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:33,775 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:45,658 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:53:58,038 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:08,875 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:19,669 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:30,506 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:41,340 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:54:52,190 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:03,025 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:14,866 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:26,764 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:38,665 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:55:49,474 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:01,339 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:12,152 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:22,953 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:33,763 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:45,645 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:56:56,484 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:07,327 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:18,144 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:28,970 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:40,860 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:57:51,695 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:03,556 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:15,413 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:26,232 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:37,077 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:58:48,971 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:00,860 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:11,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:22,477 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:34,850 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:47,244 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 20:59:58,089 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:08,902 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:19,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:31,560 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:42,367 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:00:53,189 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:03,977 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:16,362 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:27,184 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:39,058 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:01:49,889 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:02,237 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:13,048 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:23,830 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:34,665 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:45,495 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:02:56,293 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:08,148 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:18,969 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:30,848 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:41,631 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:03:52,449 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:03,282 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:14,121 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:25,956 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:36,772 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:48,657 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:04:59,457 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:10,273 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:22,163 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:34,547 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:45,360 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:05:56,171 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:06,972 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:17,790 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:30,147 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:42,523 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:06:54,383 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:06,262 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:18,633 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:30,515 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:41,369 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:07:52,192 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:03,034 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:14,876 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:26,775 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:37,604 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:48,440 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:08:59,281 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:10,081 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:20,927 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:31,777 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:42,566 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:09:53,383 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:05,748 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:16,561 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:27,391 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:38,198 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:10:50,056 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:00,842 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:11,687 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:23,574 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:34,369 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:45,184 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:11:57,560 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:08,394 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:19,235 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:30,045 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:40,887 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:51,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:12:56,139 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:13:02,499 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:14,864 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:18,948 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 1.2s 2018-03-08 21:13:19,906 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.7s 2018-03-08 21:13:20,648 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.62s 2018-03-08 21:13:21,487 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.77s 2018-03-08 21:13:22,271 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.69s 2018-03-08 21:13:22,938 - octoprint.plugins.announcements - INFO - Loaded channel _m33fio from https://exploitkings.com/scripts/M33 Fio.xml in 0.59s 2018-03-08 21:13:25,688 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:26,300 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:13:26,380 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:13:26,682 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:13:31,455 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-03-08 21:13:31,569 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:13:38,041 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:48,871 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:13:59,722 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:10,538 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:22,378 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:33,188 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:44,028 - octoprint.plugins.enclosure - INFO - sensorType dht 2018-03-08 21:14:44,548 - octoprint.plugins.softwareupdate - INFO - Starting update of enclosure to 4.02... 2018-03-08 21:14:53,889 - octoprint.plugins.softwareupdate - INFO - Update of enclosure to 4.02 successful! 2018-03-08 21:14:54,167 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:14:54,169 - octoprint.plugins.softwareupdate - INFO - Restarting... 2018-03-08 21:14:54,249 - octoprint.server - INFO - Shutting down... 2018-03-08 21:14:54,421 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:14:54,425 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:14:54,440 - octoprint.server - INFO - Goodbye! 2018-03-08 21:14:57,154 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:14:57,154 - octoprint.startup - INFO - Starting OctoPrint 1.3.6 2018-03-08 21:14:57,155 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:14:57,195 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:14:57,795 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:14:57,836 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:14:59,541 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 9 hook handlers 2018-03-08 21:14:59,668 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:14:59,669 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:14:59,945 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 9 hook handlers 2018-03-08 21:14:59,981 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:15:04,990 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:15:05,192 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:15:07,677 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:15:10,113 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:15:10,116 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2018-03-08 21:15:12,459 - octoprint.plugins.enclosure - WARNING - ######### settings not compatible ######### 2018-03-08 21:15:12,460 - octoprint.plugins.enclosure - WARNING - ######### current settings version None target settings version 4 ######### 2018-03-08 21:15:12,809 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (4.02) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:15:14,528 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:15:14,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:15:14,552 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:15:14,560 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:15:14,715 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:15:14,776 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:15:14,778 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:15:14,778 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:15:14,784 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:15:15,008 - octoprint.plugins.octolapse - INFO - Octolapse is getting update information. 2018-03-08 21:15:15,700 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:15:15,742 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:15:15,769 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:15:15,801 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:15:15,780 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:15:15,883 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-03-08 21:15:16,020 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:15:16,654 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:15:16,685 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:15:17,488 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json 2018-03-08 21:15:17,730 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:15:17,837 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6" 2018-03-08 21:15:18,561 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:15:18,859 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-03-08 21:15:19,016 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json 2018-03-08 21:15:19,368 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:15:22,041 - tornado.access - WARNING - 404 GET /plugin/enclosure/getUpdateBtnStatus (127.0.0.1) 43.38ms 2018-03-08 21:15:22,055 - tornado.access - WARNING - 404 GET /plugin/enclosure/getEnclosureSetTemperature (127.0.0.1) 10.78ms 2018-03-08 21:15:25,177 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:15:25,382 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-03-08 21:15:25,497 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:15:36,745 - octoprint.server.preemptive_cache - INFO - ... done in 20.09s 2018-03-08 21:15:36,745 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:15:41,265 - octoprint.server.preemptive_cache - INFO - ... done in 4.52s 2018-03-08 21:15:48,905 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:15:49,878 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:16:57,656 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:02,286 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:06,716 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:13,434 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:16,989 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:36,207 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:18:39,837 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:22:01,502 - octoprint.server - INFO - Shutting down... 2018-03-08 21:22:01,982 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:22:01,990 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:22:01,992 - octoprint.server - INFO - Goodbye! 2018-03-08 21:22:04,908 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:22:04,908 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:22:04,910 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:22:04,960 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:22:04,963 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:22:05,004 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:22:06,130 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:22:06,548 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:22:06,596 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:22:06,643 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:22:06,674 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:22:06,700 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:22:06,719 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:22:06,737 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:22:06,878 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:22:07,036 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:22:07,046 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:22:07,213 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:22:07,239 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:22:07,239 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:22:07,515 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:22:07,551 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:22:12,614 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:22:12,858 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2018-03-08 21:22:15,354 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:22:17,792 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:22:17,796 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-03-08 21:22:17,806 - octoprint.plugin.core - INFO - 20 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (4.02) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:22:19,599 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:22:27,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:22:27,966 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:22:27,982 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:22:27,983 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:22:28,172 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:22:28,353 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:22:28,354 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:22:28,355 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:22:28,360 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:22:28,490 - octoprint.plugins.octolapse - INFO - Octolapse is getting update information. 2018-03-08 21:22:28,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:22:28,798 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:22:29,507 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:22:29,519 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:22:29,537 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:22:29,539 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:22:29,555 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:22:29,563 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:22:29,584 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:22:29,587 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:22:29,589 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:22:29,755 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:22:30,580 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:22:30,673 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:22:30,705 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:22:32,110 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:22:32,266 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:22:38,010 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:22:40,730 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2018-03-08 21:22:40,777 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2018-03-08 21:22:48,149 - octoprint.server.preemptive_cache - INFO - ... done in 17.48s 2018-03-08 21:22:48,150 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:22:54,007 - octoprint.server.preemptive_cache - INFO - ... done in 5.86s 2018-03-08 21:22:58,807 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:23:53,152 - octoprint.plugins.pluginmanager - INFO - Installing plugin from https://github.com/FormerLurker/Octolapse/archive/nopause.zip 2018-03-08 21:23:53,446 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:23:53,840 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:23:53,855 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:23:53,888 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:23:53,910 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:23:53,931 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:23:53,943 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:23:53,954 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:23:54,076 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:23:54,152 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:23:57,689 - octoprint.plugins.pluginmanager - ERROR - Installing the plugin from https://github.com/FormerLurker/Octolapse/archive/nopause.zip failed, could not parse output from pip. See plugin_pluginmanager_console.log for generated output 2018-03-08 21:24:11,277 - octoprint.plugins.pluginmanager - INFO - Installing plugin from https://github.com/FormerLurker/Octolapse/archive/NoPause.zip 2018-03-08 21:24:11,430 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:24:11,981 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:24:11,998 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:24:12,031 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:24:12,054 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:24:12,074 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:24:12,087 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:24:12,100 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:24:12,226 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:24:12,302 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:24:20,023 - octoprint.plugins.pluginmanager - INFO - Plugin to be installed from https://github.com/FormerLurker/Octolapse/archive/NoPause.zip was already installed, forcing a reinstall 2018-03-08 21:24:29,633 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:24:30,074 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:24:30,088 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:24:30,124 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:24:30,146 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:24:30,169 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:24:30,182 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:24:30,195 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:24:30,485 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:24:30,570 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:24:30,573 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:24:30,866 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:24:30,869 - octoprint.plugin.core - INFO - 20 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (4.02) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:24:30,870 - octoprint.plugins.pluginmanager - INFO - The plugin was installed successfully: Octolapse Plugin, version 0.1.0 2018-03-08 21:24:43,537 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2018-03-08 21:24:43,666 - octoprint.server - INFO - Shutting down... 2018-03-08 21:24:44,495 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:24:44,498 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:24:44,515 - octoprint.server - INFO - Goodbye! 2018-03-08 21:24:47,234 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:24:47,235 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:24:47,235 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:24:47,276 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:24:47,278 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:24:47,329 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:24:48,477 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:24:48,897 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:24:48,917 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:24:48,961 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:24:48,988 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:24:49,014 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:24:49,031 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:24:49,048 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:24:49,189 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:24:49,346 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:24:49,356 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:24:49,451 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:24:49,478 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:24:49,479 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:24:49,832 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:24:49,870 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:24:54,919 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:24:55,026 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:24:57,473 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:24:59,937 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:24:59,942 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s) 2018-03-08 21:24:59,986 - octoprint.plugin.core - INFO - 20 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | Enclosure Plugin (4.02) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_enclosure | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:25:01,777 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:25:01,785 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:25:01,801 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:25:01,810 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:25:01,810 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:25:01,971 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:25:02,336 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:25:02,337 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:25:02,338 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:25:02,343 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:25:02,527 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:25:02,652 - octoprint.plugins.octolapse - INFO - Octolapse is getting update information. 2018-03-08 21:25:02,701 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:25:03,365 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:25:03,366 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:25:03,370 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:25:03,386 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:25:03,403 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:25:03,476 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:25:03,521 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:25:03,522 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:25:03,592 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:25:04,202 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:25:04,330 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:25:04,453 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:25:09,442 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:25:11,381 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:25:21,886 - octoprint.server.preemptive_cache - INFO - ... done in 17.43s 2018-03-08 21:25:21,887 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:25:26,571 - octoprint.server.preemptive_cache - INFO - ... done in 4.68s 2018-03-08 21:25:49,933 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:25:49,940 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:25:49,946 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:25:49,948 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:25:49,952 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:14,486 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:27:17,413 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:27:23,174 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:27:23,179 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:23,185 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:23,186 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:23,190 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:43,233 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:27:43,253 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:27:43,256 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:43,269 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:43,271 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:43,317 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:47,536 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:27:47,548 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:47,554 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:47,555 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:47,559 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:50,488 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port" 2018-03-08 21:27:50,498 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:50,504 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:50,505 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:50,519 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:27:56,257 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:27:56,288 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:27:56,291 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:27:56,296 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:27:56,295 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:27:56,302 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:28:59,417 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:28:59,436 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:28:59,441 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:28:59,453 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:28:59,452 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:28:59,458 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:28:59,963 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:28:59,978 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:28:59,981 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:28:59,986 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:28:59,985 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:00,000 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:00,260 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:00,274 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:00,277 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:00,283 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:00,283 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:00,300 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:00,555 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:00,570 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:00,573 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:00,580 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:00,579 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:00,595 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:00,654 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:00,668 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:00,671 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:00,681 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:00,680 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:00,691 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:00,992 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,006 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,009 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,014 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,014 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:01,028 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:01,086 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,102 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,105 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,113 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,113 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:01,127 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:01,429 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,448 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,455 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,459 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:01,461 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,465 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:01,532 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,560 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,563 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,569 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,671 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline" 2018-03-08 21:29:01,727 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:01,753 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:01,755 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:01,760 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:01,760 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:01,765 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:02,072 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,103 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,107 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,160 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,190 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,192 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,199 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline" 2018-03-08 21:29:02,255 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,285 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,289 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,348 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,364 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,374 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,380 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:02,379 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:02,422 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:29:02,690 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,722 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,726 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,781 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:29:02,796 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:29:02,800 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:29:02,806 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:29:02,813 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:29:02,859 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:43,323 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:43,342 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:43,345 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:43,350 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:43,352 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:43,354 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:44,543 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:44,560 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:44,562 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:44,567 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:44,569 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:44,581 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:44,913 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:44,927 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:44,929 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:44,935 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:44,936 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:44,939 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:45,399 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:45,416 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:45,418 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:45,423 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:45,433 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:45,436 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:48,179 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:48,199 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:48,201 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:48,215 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:48,216 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:48,220 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:48,889 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:48,906 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:48,908 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:48,918 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:48,918 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:49,000 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:51,039 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:51,058 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:51,070 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:51,074 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:51,074 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:51,080 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:30:51,915 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:30:51,930 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:30:51,933 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:30:51,939 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:30:51,938 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:30:51,943 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:31:12,450 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:31:12,735 - octoprint.plugin.core - INFO - Found 20 plugin(s) providing 10 mixin implementations, 9 hook handlers 2018-03-08 21:31:15,477 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2018-03-08 21:31:15,642 - octoprint.server - INFO - Shutting down... 2018-03-08 21:31:16,334 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:31:16,337 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:31:16,352 - octoprint.server - INFO - Goodbye! 2018-03-08 21:31:19,120 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:31:19,121 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:31:19,121 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:31:19,161 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:31:19,775 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:31:19,819 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:31:21,022 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:31:21,444 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:31:21,465 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:31:21,511 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:31:21,539 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:31:21,566 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:31:21,584 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:31:21,601 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:31:21,620 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:31:21,790 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:31:21,799 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 7 hook handlers 2018-03-08 21:31:21,896 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:31:21,923 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:31:21,924 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:31:22,201 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 7 hook handlers 2018-03-08 21:31:22,240 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:31:27,329 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:31:27,431 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:31:29,938 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:31:32,401 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:31:32,405 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2018-03-08 21:31:32,412 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:31:34,068 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:31:34,076 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:31:34,093 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:31:34,101 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:31:34,101 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:31:34,252 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:31:34,558 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:31:34,559 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:31:34,560 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:31:34,567 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:31:34,662 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:31:34,665 - octoprint.plugins.octolapse - INFO - Octolapse is getting update information. 2018-03-08 21:31:34,716 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:31:34,756 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:31:34,795 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:31:34,798 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:31:34,927 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:31:34,928 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:31:35,936 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:31:36,075 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:31:36,093 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:31:42,146 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:31:43,542 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:31:54,703 - octoprint.server.preemptive_cache - INFO - ... done in 18.61s 2018-03-08 21:31:54,704 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:31:59,179 - octoprint.server.preemptive_cache - INFO - ... done in 4.48s 2018-03-08 21:33:16,529 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:33:18,724 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:33:24,436 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:33:24,460 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:33:24,467 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:33:24,470 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:33:24,471 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:33:24,577 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:33:51,172 - octoprint.server.api.system - INFO - Performing command for core:restart_safe: sudo service octoprint restart 2018-03-08 21:33:51,609 - octoprint.server - INFO - Shutting down... 2018-03-08 21:33:52,435 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:33:52,439 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:33:52,453 - octoprint.server - INFO - Goodbye! 2018-03-08 21:33:55,214 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:33:55,215 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:33:55,215 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled! 2018-03-08 21:33:55,216 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:33:55,255 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:33:55,258 - octoprint.startup - INFO - Blacklist processing done 2018-03-08 21:33:55,307 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:33:56,470 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:33:56,916 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:33:56,938 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:33:56,983 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:33:57,012 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:33:57,039 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:33:57,056 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:33:57,073 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:33:57,091 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:33:57,206 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:33:57,218 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 8 mixin implementations, 4 hook handlers 2018-03-08 21:33:57,318 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:33:57,344 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:33:57,344 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:33:57,640 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 8 mixin implementations, 4 hook handlers 2018-03-08 21:33:57,773 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:34:02,836 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:34:02,938 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:34:05,366 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:34:07,904 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:34:07,907 - octoprint.plugin.core - INFO - Initialized 8 plugin implementation(s) 2018-03-08 21:34:07,963 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | !Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:34:09,632 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:34:09,641 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:34:09,657 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:34:09,665 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:34:09,797 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:34:09,821 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:34:09,822 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:34:09,823 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event 2018-03-08 21:34:09,828 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:34:09,842 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:34:09,953 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:34:10,125 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:34:10,144 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:34:10,154 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:34:10,196 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag 2018-03-08 21:34:10,197 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:34:10,876 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:34:11,211 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:34:11,222 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:34:11,378 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:34:18,960 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:34:27,657 - octoprint.server.preemptive_cache - INFO - ... done in 16.44s 2018-03-08 21:34:27,658 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:34:34,832 - octoprint.server.preemptive_cache - INFO - ... done in 7.17s 2018-03-08 21:34:35,377 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:34:37,044 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:34:43,039 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:34:43,057 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:34:43,059 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:34:43,064 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:34:43,062 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:34:43,080 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:46:24,750 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:46:24,771 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:46:24,776 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:46:24,786 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:46:24,787 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:46:24,790 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:46:31,178 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 21:46:31,194 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 21:46:31,196 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 21:46:31,200 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 21:46:31,201 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 21:46:31,215 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 21:46:44,364 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2018-03-08 21:46:44,543 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 21:46:44,619 - octoprint.server - INFO - Shutting down... 2018-03-08 21:46:45,567 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2018-03-08 21:46:46,962 - octoprint.events - INFO - Event loop shut down 2018-03-08 21:46:46,991 - octoprint.server - INFO - Goodbye! 2018-03-08 21:46:55,468 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:46:55,471 - octoprint.startup - INFO - Starting OctoPrint 1.3.7.dev130+g02c42ec 2018-03-08 21:46:55,471 - octoprint.startup - INFO - ****************************************************************************** 2018-03-08 21:46:55,542 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist 2018-03-08 21:46:55,641 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:46:57,886 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled. 2018-03-08 21:46:58,391 - octoprint.plugin.core - INFO - Plugin Fullscreen Plugin (0.0.4) is disabled. 2018-03-08 21:46:58,454 - octoprint.plugin.core - INFO - Plugin GCODE System Commands (0.1.1) is disabled. 2018-03-08 21:46:58,533 - octoprint.plugin.core - INFO - Plugin Printer Stats (1.0.0) is disabled. 2018-03-08 21:46:58,570 - octoprint.plugin.core - INFO - Plugin Print History Plugin (1.2) is disabled. 2018-03-08 21:46:58,603 - octoprint.plugin.core - INFO - Plugin M117PopUp (0.6.0) is disabled. 2018-03-08 21:46:58,627 - octoprint.plugin.core - INFO - Plugin FineTuneRptr (0.774) is disabled. 2018-03-08 21:46:58,651 - octoprint.plugin.core - INFO - Plugin STL Viewer (0.4.1) is disabled. 2018-03-08 21:46:58,676 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.2.2) is disabled. 2018-03-08 21:46:58,945 - octoprint.plugin.core - INFO - Plugin Multi Colors (1.0.11) is disabled. 2018-03-08 21:46:58,955 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 7 hook handlers 2018-03-08 21:46:59,082 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval 2018-03-08 21:46:59,137 - octoprint.server - INFO - Intermediary server started 2018-03-08 21:46:59,137 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2018-03-08 21:46:59,426 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 9 mixin implementations, 7 hook handlers 2018-03-08 21:46:59,467 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2018-03-08 21:47:14,566 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2018-03-08 21:47:14,678 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2018-03-08 21:47:17,544 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2018-03-08 21:47:20,005 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2018-03-08 21:47:20,009 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2018-03-08 21:47:20,017 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/discovery | !FineTuneRptr (0.774) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_finetunerptr | !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | !GCODE System Commands (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands | Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/logging | !M117PopUp (0.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_M117PopUp | !Multi Colors (1.0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_multi_colors | Octolapse Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse | OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/octopi_support | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/pluginmanager | !Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory | !Printer Stats (1.0.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stats | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/softwareupdate | !STL Viewer (0.4.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | !Tempsgraph Plugin (0.2.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/plugins/virtual_printer 2018-03-08 21:47:21,722 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details: | hardware: | cores: 4 | freq: 1200.0 | ram: 901685248 | os: | id: linux | platform: linux2 | plugins: | octopi_support: | model: 3B | revision: a22082 | version: 0.13.0 | python: | pip: 9.0.1 | version: 2.7.9 | virtualenv: /home/pi/oprint 2018-03-08 21:47:21,732 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2018-03-08 21:47:21,747 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2018-03-08 21:47:21,762 - octoprint.server.util.flask.collect_plugin_assets - WARNING - Plugin logging is referring to non existing css asset css/logging.css 2018-03-08 21:47:21,763 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets. 2018-03-08 21:47:21,959 - octoprint.server - INFO - Shutting down intermediary server... 2018-03-08 21:47:21,975 - octoprint.server - INFO - Intermediary server shut down 2018-03-08 21:47:21,976 - octoprint.events - INFO - Processing startup event, this is our first event 2018-03-08 21:47:21,977 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event 2018-03-08 21:47:21,978 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2018-03-08 21:47:22,066 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2018-03-08 21:47:22,149 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2018-03-08 21:47:22,193 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2018-03-08 21:47:22,197 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2018-03-08 21:47:22,263 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json. 2018-03-08 21:47:22,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:47:22,998 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online 2018-03-08 21:47:23,071 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2018-03-08 21:47:23,146 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:47:23,311 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://tako.prefecture/'} 2018-03-08 21:47:23,369 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid 2018-03-08 21:47:24,087 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 21:47:31,005 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2018-03-08 21:47:41,362 - octoprint.server.preemptive_cache - INFO - ... done in 18.05s 2018-03-08 21:47:41,362 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://tako.prefecture/'} 2018-03-08 21:47:45,811 - octoprint.server.preemptive_cache - INFO - ... done in 4.45s 2018-03-08 22:01:59,084 - octoprint.server.heartbeat - INFO - Server heartbeat <3 2018-03-08 22:03:32,895 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.168.70 2018-03-08 22:03:35,503 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.168.70 2018-03-08 22:03:39,241 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 22:03:39,279 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 22:03:39,282 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 22:03:39,287 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 22:03:39,287 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 22:03:39,428 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)" 2018-03-08 22:04:03,395 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port" 2018-03-08 22:04:03,411 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port" 2018-03-08 22:04:03,415 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting" 2018-03-08 22:04:03,418 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 2358, in _readline ret = self._serial.readline() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.7.dev130_g02c42ec-py2.7.egg/octoprint/util/comm.py", line 4186, in readline timeout = serial.Timeout(self._timeout) AttributeError: 'module' object has no attribute 'Timeout' 2018-03-08 22:04:03,419 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0 2018-03-08 22:04:03,423 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline (Error: AttributeError: ''module' object has no attribute 'Timeout'' @ comm.py:_readline:2358)"
AttributeError
def _process_command_phase(self, phase, command, command_type=None, gcode=None): if (self.isStreaming() and self.isPrinting()) or phase not in ( "queuing", "queued", "sending", "sent", ): return command, command_type, gcode if gcode is None: gcode = gcode_command_for_cmd(command) # send it through the phase specific handlers provided by plugins for name, hook in self._gcode_hooks[phase].items(): try: hook_result = hook(self, phase, command, command_type, gcode) except: self._logger.exception( "Error while processing hook {name} for phase {phase} and command {command}:".format( **locals() ) ) else: command, command_type, gcode = self._handle_command_handler_result( command, command_type, gcode, hook_result ) if command is None: # hook handler return None as command, so we'll stop here and return a full out None result return None, None, None # if it's a gcode command send it through the specific handler if it exists if gcode is not None: gcodeHandler = "_gcode_" + gcode + "_" + phase if hasattr(self, gcodeHandler): handler_result = getattr(self, gcodeHandler)(command, cmd_type=command_type) command, command_type, gcode = self._handle_command_handler_result( command, command_type, gcode, handler_result ) # send it through the phase specific command handler if it exists commandPhaseHandler = "_command_phase_" + phase if hasattr(self, commandPhaseHandler): handler_result = getattr(self, commandPhaseHandler)( command, cmd_type=command_type, gcode=gcode ) command, command_type, gcode = self._handle_command_handler_result( command, command_type, gcode, handler_result ) # finally return whatever we resulted on return command, command_type, gcode
def _process_command_phase(self, phase, command, command_type=None, gcode=None): if self.isStreaming() or phase not in ("queuing", "queued", "sending", "sent"): return command, command_type, gcode if gcode is None: gcode = gcode_command_for_cmd(command) # send it through the phase specific handlers provided by plugins for name, hook in self._gcode_hooks[phase].items(): try: hook_result = hook(self, phase, command, command_type, gcode) except: self._logger.exception( "Error while processing hook {name} for phase {phase} and command {command}:".format( **locals() ) ) else: command, command_type, gcode = self._handle_command_handler_result( command, command_type, gcode, hook_result ) if command is None: # hook handler return None as command, so we'll stop here and return a full out None result return None, None, None # if it's a gcode command send it through the specific handler if it exists if gcode is not None: gcodeHandler = "_gcode_" + gcode + "_" + phase if hasattr(self, gcodeHandler): handler_result = getattr(self, gcodeHandler)(command, cmd_type=command_type) command, command_type, gcode = self._handle_command_handler_result( command, command_type, gcode, handler_result ) # send it through the phase specific command handler if it exists commandPhaseHandler = "_command_phase_" + phase if hasattr(self, commandPhaseHandler): handler_result = getattr(self, commandPhaseHandler)( command, cmd_type=command_type, gcode=gcode ) command, command_type, gcode = self._handle_command_handler_result( command, command_type, gcode, handler_result ) # finally return whatever we resulted on return command, command_type, gcode
https://github.com/OctoPrint/OctoPrint/issues/1882
2017-04-21 15:27:24,022 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2017-04-21 15:27:24,022 - octoprint.server - INFO - OctoPrint 1.3.2 (master branch) 2017-04-21 15:27:24,024 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 15:27:24,024 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2017-04-21 15:27:24,020 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 15:27:26,280 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 15:27:26,280 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 15:27:26,284 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2017-04-21 15:27:26,292 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 15:27:26,293 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 15:27:26,299 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2017-04-21 15:27:26,302 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 15:27:26,315 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 15:27:26,812 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 15:27:26,822 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 15:27:26,825 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 15:27:27,048 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-04-21 15:27:27,095 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 15:27:27,352 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.25s 2017-04-21 15:27:30,941 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 15:27:30,942 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 15:27:35,507 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2017-04-21 15:27:39,930 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2017-04-21 15:27:39,967 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 15:27:48,626 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 15:27:52,177 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 15:35:45,895 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.180 2017-04-21 15:35:56,165 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.180 2017-04-21 15:35:56,728 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.180 2017-04-21 15:36:09,852 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.180 2017-04-21 16:01:57,028 - tornado.access - WARNING - 405 PROPFIND /webdav/ (127.0.0.1) 3.44ms 2017-04-21 16:15:18,724 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:21:49,172 - octoprint.server.api.system - INFO - Performing command for custom:pon: printer_on.sh 2017-04-21 16:22:15,825 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 16:22:16,669 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:22:31,581 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 16:23:33,511 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:23:33,764 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 16:23:34,141 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-04-21 16:23:44,806 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2017-04-21 16:23:44,988 - octoprint.server - INFO - Shutting down... 2017-04-21 16:23:45,270 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-04-21 16:23:45,272 - octoprint.events - INFO - Event loop shut down 2017-04-21 16:23:45,282 - octoprint.server - INFO - Goodbye! 2017-04-21 16:23:47,346 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 16:23:47,346 - octoprint.server - INFO - Starting OctoPrint 1.3.2 (master branch) 2017-04-21 16:23:47,347 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 16:23:47,421 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:23:48,950 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 12 hook handlers 2017-04-21 16:23:48,977 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:23:49,221 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 12 hook handlers 2017-04-21 16:23:49,227 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2017-04-21 16:23:49,229 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2017-04-21 16:23:49,352 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-04-21 16:23:51,573 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 16:23:53,823 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 16:23:53,823 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 16:23:53,826 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2017-04-21 16:23:53,835 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 16:23:53,836 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 16:23:53,842 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2017-04-21 16:23:53,845 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 16:23:53,858 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 16:23:54,142 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 16:23:54,153 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 16:23:54,155 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 16:23:54,175 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-04-21 16:23:54,187 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 16:23:54,294 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 16:23:55,759 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:23:58,088 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 16:24:09,300 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 16:24:12,414 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:24:14,044 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 16:24:51,673 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:24:51,932 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2017-04-21 16:24:51,934 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | !Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 16:24:59,700 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2017-04-21 16:24:59,817 - octoprint.server - INFO - Shutting down... 2017-04-21 16:24:59,922 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-04-21 16:24:59,924 - octoprint.events - INFO - Event loop shut down 2017-04-21 16:24:59,932 - octoprint.server - INFO - Goodbye! 2017-04-21 16:25:01,925 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 16:25:01,926 - octoprint.server - INFO - Starting OctoPrint 1.3.2 (master branch) 2017-04-21 16:25:01,926 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 16:25:01,997 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:25:03,495 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 16:25:03,521 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:25:03,764 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 16:25:03,769 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2017-04-21 16:25:03,772 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2017-04-21 16:25:03,896 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-04-21 16:25:06,110 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 16:25:08,302 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 16:25:08,303 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 16:25:08,309 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2017-04-21 16:25:08,325 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 16:25:08,327 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 16:25:08,338 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2017-04-21 16:25:08,344 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 16:25:08,370 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 16:25:08,984 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 16:25:08,995 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 16:25:08,997 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 16:25:09,016 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-04-21 16:25:09,029 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 16:25:09,138 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 16:25:12,050 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:25:17,808 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 16:25:21,302 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 16:29:37,270 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 16:29:42,435 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:30:02,258 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 16:55:19,772 - octoprint.server.api.system - INFO - Performing command for custom:poff: printer_off.sh 2017-04-21 16:55:22,224 - octoprint.server.api.system - INFO - Performing command for custom:streamoff: sudo service webcamd stop 2017-04-21 16:55:24,082 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:01:30,014 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:01:40,756 - octoprint.server.api.system - INFO - Performing command for custom:streamoff: sudo service webcamd stop 2017-04-21 18:01:42,797 - octoprint.server.api.system - INFO - Performing command for custom:streamon: sudo service webcamd start 2017-04-21 18:01:48,867 - octoprint.server.api.system - INFO - Performing command for custom:pon: printer_on.sh 2017-04-21 18:02:03,864 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:02:04,619 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:02:18,608 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 18:19:57,705 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:19:58,117 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M20 | Recv: Begin file list | Recv: End file list | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:19:58,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: End file list | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:19:58,203 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:19:58,225 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:19:58,248 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:56,338 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped. 2017-04-21 18:20:58,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:58,156 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:58,180 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:58,207 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:58,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:21:06,703 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2017-04-21 18:21:06,826 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:21:06,910 - octoprint.server - INFO - Shutting down... 2017-04-21 18:21:07,297 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-04-21 18:21:07,299 - octoprint.events - INFO - Event loop shut down 2017-04-21 18:21:07,312 - octoprint.server - INFO - Goodbye! 2017-04-21 18:21:13,679 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 18:21:13,681 - octoprint.server - INFO - Starting OctoPrint 1.3.2 (master branch) 2017-04-21 18:21:13,681 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 18:21:13,858 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 18:21:16,096 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 18:21:16,138 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 18:21:16,380 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 18:21:16,385 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2017-04-21 18:21:16,392 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2017-04-21 18:21:16,517 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-04-21 18:21:27,780 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 18:21:29,988 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 18:21:29,989 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 18:21:29,994 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2017-04-21 18:21:30,002 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 18:21:30,004 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 18:21:30,016 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2017-04-21 18:21:30,015 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:21:30,019 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 18:21:30,075 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 18:21:30,603 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 18:21:30,626 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 18:21:30,629 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 18:21:30,675 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-04-21 18:21:30,709 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 18:21:30,910 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 18:21:31,408 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1492798893152 (127.0.0.1) 344.99ms 2017-04-21 18:21:32,436 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1492798894523 (127.0.0.1) 15.22ms 2017-04-21 18:21:33,098 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798895160 (127.0.0.1) 40.95ms 2017-04-21 18:21:33,468 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1492798895556 (127.0.0.1) 13.01ms 2017-04-21 18:21:34,173 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798896222 (127.0.0.1) 54.93ms 2017-04-21 18:21:35,262 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798897292 (127.0.0.1) 65.54ms 2017-04-21 18:21:36,320 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798898375 (127.0.0.1) 49.83ms 2017-04-21 18:21:37,405 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798899428 (127.0.0.1) 49.79ms 2017-04-21 18:21:38,470 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798900519 (127.0.0.1) 42.89ms 2017-04-21 18:21:39,583 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798901592 (127.0.0.1) 61.48ms 2017-04-21 18:21:40,946 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798902696 (127.0.0.1) 285.00ms 2017-04-21 18:21:41,920 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798903967 (127.0.0.1) 55.22ms 2017-04-21 18:21:43,147 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798905039 (127.0.0.1) 52.81ms 2017-04-21 18:21:44,210 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798906260 (127.0.0.1) 53.27ms 2017-04-21 18:21:45,279 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798907329 (127.0.0.1) 49.96ms 2017-04-21 18:21:45,349 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 18:21:46,465 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:http://192.168.1.240/:de), signaling as cached 2017-04-21 18:21:50,121 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 18:21:50,900 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:21:57,550 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 27.53s 2017-04-21 18:23:06,042 - octoprint.server.api.system - INFO - Performing command for custom:pon: printer_on.sh 2017-04-21 18:23:07,812 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:23:08,546 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:23:22,401 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 18:23:50,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:23:50,652 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M20 | Recv: Begin file list | Recv: End file list | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:23:50,678 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: End file list | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:23:50,701 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:23:50,723 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:23:50,745 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,672 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,722 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,746 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,771 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,706 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,733 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,759 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,784 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:06,247 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped. 2017-04-21 18:26:14,127 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped. 2017-04-21 18:26:19,796 - tornado.access - WARNING - 409 POST /api/printer/sd (127.0.0.1) 25.04ms 2017-04-21 18:26:23,142 - tornado.access - WARNING - 409 POST /api/printer/sd (127.0.0.1) 24.71ms 2017-04-21 18:26:25,458 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:26:26,203 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:26:50,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:50,724 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:50,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:50,773 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:50,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:27:04,315 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2017-04-21 18:27:04,499 - octoprint.server - INFO - Shutting down... 2017-04-21 18:27:04,507 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-04-21 18:27:04,512 - octoprint.events - INFO - Event loop shut down 2017-04-21 18:27:04,518 - octoprint.server - INFO - Goodbye! 2017-04-21 18:27:06,476 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 18:27:06,477 - octoprint.server - INFO - Starting OctoPrint 1.3.2 (master branch) 2017-04-21 18:27:06,477 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 18:27:06,546 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 18:27:08,028 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 18:27:08,054 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 18:27:08,296 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 18:27:08,301 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2017-04-21 18:27:08,306 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2017-04-21 18:27:08,429 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-04-21 18:27:10,647 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 18:27:12,854 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 18:27:12,855 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 18:27:12,858 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2017-04-21 18:27:12,866 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 18:27:12,867 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 18:27:12,879 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:27:12,892 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2017-04-21 18:27:12,901 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 18:27:12,937 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 18:27:13,378 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 18:27:13,403 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 18:27:13,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 18:27:13,436 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-04-21 18:27:13,460 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 18:27:13,633 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 18:27:14,881 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:27:26,176 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 18:27:30,771 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 18:27:37,226 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 18:27:39,606 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 26.73s 2017-04-21 18:35:17,587 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:35:18,022 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:35:25,876 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 7.85s 2017-04-21 18:36:18,528 - octoprint.server.api.system - INFO - Performing command for custom:poff: printer_off.sh 2017-04-21 18:36:20,835 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/util/comm.py", line 1792, in _readline ret = self._serial.readline() File "build/bdist.linux-armv7l/egg/serial/serialposix.py", line 475, in read raise SerialException('device reports readiness to read but returned no data (device disconnected or multiple access on port?)') SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?) 2017-04-21 18:36:24,367 - octoprint.server.api.system - INFO - Performing command for custom:loff: light_off.sh 2017-04-21 18:36:25,966 - octoprint.server.api.system - INFO - Performing command for custom:loff: light_off.sh 2017-04-21 18:36:27,614 - octoprint.server.api.system - INFO - Performing command for custom:streamoff: sudo service webcamd stop 2017-04-21 18:36:31,133 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:58:48,671 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:59:43,260 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 21:55:44,334 - tornado.access - WARNING - 404 GET //README (127.0.0.1) 11.25ms 2017-04-21 21:55:44,911 - tornado.access - WARNING - 404 GET /horde//README (127.0.0.1) 9.29ms 2017-04-21 21:55:45,489 - tornado.access - WARNING - 404 GET /horde2//README (127.0.0.1) 9.39ms 2017-04-21 21:55:46,077 - tornado.access - WARNING - 404 GET /horde3//README (127.0.0.1) 9.15ms 2017-04-21 21:55:46,650 - tornado.access - WARNING - 404 GET /horde-3.0.9//README (127.0.0.1) 9.23ms 2017-04-21 21:55:47,215 - tornado.access - WARNING - 404 GET /Horde//README (127.0.0.1) 9.32ms 2017-04-21 23:59:26,784 - tornado.access - WARNING - 404 GET http://httpheader.net/ (127.0.0.1) 13.14ms 2017-04-22 01:39:14,764 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-22 01:39:16,403 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.26s 2017-04-22 01:39:17,554 - octoprint.server.api.system - INFO - Performing command for custom:pon: printer_on.sh 2017-04-22 01:39:23,703 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-22 01:39:24,565 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-22 01:39:43,023 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-22 01:40:04,883 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Staubkappe_V3.gcode 2017-04-22 01:43:52,420 - octoprint.util.comm - INFO - Finished in 227.410 s. Approx. transfer rate of 123.526 lines/s or 8.095 ms per line 2017-04-22 01:43:52,425 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Staubkappe_V3.gcode 2017-04-22 01:43:58,341 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Staubkappe_V3.gcode finished, needed 5.92s 2017-04-22 01:46:56,867 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-22 01:46:57,289 - octoprint.util.comm - WARNING - Printer requested line 1 but no sufficient history is available, can't resend. Printer requested line 1, current line is 28094, line history has 50 entries. 2017-04-22 01:46:57,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 28094 | Last lines in terminal: | Send: M105 | Recv: ok T:18.6 /0.0 B:19.3 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:18.6 /0.0 B:19.3 /0.0 @:0 B@:0 | Send: M20 | Recv: Begin file list | Recv: End file list | Recv: ok | Send: N28092 M110 N0*124 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N28093 M140 S100.000000*74 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Printer requested line 1 but no sufficient history is available, can't resend | Changing monitoring state from 'Sending file to SD' to 'Error: Printer requested line 1 but no sufficient history is available, can't resend' 2017-04-22 01:46:57,292 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-22 01:47:05,121 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 7.83s 2017-04-22 01:49:06,992 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-22 01:49:22,138 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Fan.gcode 2017-04-22 01:49:35,799 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Fan.gcode finished, needed 13.66s 2017-04-22 01:57:58,473 - octoprint.util.comm - INFO - Finished in 516.314 s. Approx. transfer rate of 120.967 lines/s or 8.267 ms per line 2017-04-22 01:58:30,403 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-22 01:58:30,959 - octoprint.util.comm - WARNING - Printer requested line 1 but no sufficient history is available, can't resend. Printer requested line 1, current line is 62460, line history has 50 entries. 2017-04-22 01:58:30,962 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-22 01:58:30,977 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 62460 | Last lines in terminal: | Send: M105 | Recv: ok T:18.6 /0.0 B:19.3 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:18.6 /0.0 B:19.3 /0.0 @:0 B@:0 | Send: M20 | Recv: Begin file list | Recv: End file list | Recv: ok | Send: N62458 M110 N0*112 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N62459 M140 S100.000000*70 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Printer requested line 1 but no sufficient history is available, can't resend | Changing monitoring state from 'Sending file to SD' to 'Error: Printer requested line 1 but no sufficient history is available, can't resend' 2017-04-22 01:58:38,837 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 7.88s 2017-04-22 02:02:43,342 - tornado.access - WARNING - 409 POST /api/files/sdcard (127.0.0.1) 446.15ms 2017-04-22 02:09:47,172 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239
SerialException
def _gcode_M110_sending(self, cmd, cmd_type=None): newLineNumber = 0 match = regexes_parameters["intN"].search(cmd) if match: try: newLineNumber = int(match.group("value")) except: pass with self._line_mutex: self._logger.info( "M110 detected, setting current line number to {}".format(newLineNumber) ) # send M110 command with new line number self._currentLine = newLineNumber # after a reset of the line number we have no way to determine what line exactly the printer now wants self._lastLines.clear() self._resendDelta = None
def _gcode_M110_sending(self, cmd, cmd_type=None): newLineNumber = None match = regexes_parameters["intN"].search(cmd) if match: try: newLineNumber = int(match.group("value")) except: pass else: newLineNumber = 0 with self._line_mutex: # send M110 command with new line number self._currentLine = newLineNumber # after a reset of the line number we have no way to determine what line exactly the printer now wants self._lastLines.clear() self._resendDelta = None
https://github.com/OctoPrint/OctoPrint/issues/1882
2017-04-21 15:27:24,022 - octoprint.server - INFO - --- Log roll over detected --------------------------------------------------- 2017-04-21 15:27:24,022 - octoprint.server - INFO - OctoPrint 1.3.2 (master branch) 2017-04-21 15:27:24,024 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 15:27:24,024 - octoprint.server - INFO - ------------------------------------------------------------------------------ 2017-04-21 15:27:24,020 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 15:27:26,280 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 15:27:26,280 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 15:27:26,284 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2017-04-21 15:27:26,292 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 15:27:26,293 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 15:27:26,299 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2017-04-21 15:27:26,302 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 15:27:26,315 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 15:27:26,812 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 15:27:26,822 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 15:27:26,825 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 15:27:27,048 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-04-21 15:27:27,095 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 15:27:27,352 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.25s 2017-04-21 15:27:30,941 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 15:27:30,942 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 15:27:35,507 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2017-04-21 15:27:39,930 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2017-04-21 15:27:39,967 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 15:27:48,626 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 15:27:52,177 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 15:35:45,895 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.180 2017-04-21 15:35:56,165 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.180 2017-04-21 15:35:56,728 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.180 2017-04-21 15:36:09,852 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.180 2017-04-21 16:01:57,028 - tornado.access - WARNING - 405 PROPFIND /webdav/ (127.0.0.1) 3.44ms 2017-04-21 16:15:18,724 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:21:49,172 - octoprint.server.api.system - INFO - Performing command for custom:pon: printer_on.sh 2017-04-21 16:22:15,825 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 16:22:16,669 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:22:31,581 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 16:23:33,511 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:23:33,764 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 16:23:34,141 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-04-21 16:23:44,806 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2017-04-21 16:23:44,988 - octoprint.server - INFO - Shutting down... 2017-04-21 16:23:45,270 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-04-21 16:23:45,272 - octoprint.events - INFO - Event loop shut down 2017-04-21 16:23:45,282 - octoprint.server - INFO - Goodbye! 2017-04-21 16:23:47,346 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 16:23:47,346 - octoprint.server - INFO - Starting OctoPrint 1.3.2 (master branch) 2017-04-21 16:23:47,347 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 16:23:47,421 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:23:48,950 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 12 hook handlers 2017-04-21 16:23:48,977 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:23:49,221 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 12 hook handlers 2017-04-21 16:23:49,227 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2017-04-21 16:23:49,229 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2017-04-21 16:23:49,352 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-04-21 16:23:51,573 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 16:23:53,823 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 16:23:53,823 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 16:23:53,826 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2017-04-21 16:23:53,835 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 16:23:53,836 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 16:23:53,842 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2017-04-21 16:23:53,845 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 16:23:53,858 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 16:23:54,142 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 16:23:54,153 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 16:23:54,155 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 16:23:54,175 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-04-21 16:23:54,187 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 16:23:54,294 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 16:23:55,759 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:23:58,088 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 16:24:09,300 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 16:24:12,414 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:24:14,044 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 16:24:51,673 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:24:51,932 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2017-04-21 16:24:51,934 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | !Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 16:24:59,700 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2017-04-21 16:24:59,817 - octoprint.server - INFO - Shutting down... 2017-04-21 16:24:59,922 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-04-21 16:24:59,924 - octoprint.events - INFO - Event loop shut down 2017-04-21 16:24:59,932 - octoprint.server - INFO - Goodbye! 2017-04-21 16:25:01,925 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 16:25:01,926 - octoprint.server - INFO - Starting OctoPrint 1.3.2 (master branch) 2017-04-21 16:25:01,926 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 16:25:01,997 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:25:03,495 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 16:25:03,521 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 16:25:03,764 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 16:25:03,769 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2017-04-21 16:25:03,772 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2017-04-21 16:25:03,896 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-04-21 16:25:06,110 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 16:25:08,302 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 16:25:08,303 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 16:25:08,309 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2017-04-21 16:25:08,325 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 16:25:08,327 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 16:25:08,338 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2017-04-21 16:25:08,344 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 16:25:08,370 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 16:25:08,984 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 16:25:08,995 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 16:25:08,997 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 16:25:09,016 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-04-21 16:25:09,029 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 16:25:09,138 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 16:25:12,050 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:25:17,808 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 16:25:21,302 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 16:29:37,270 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 16:29:42,435 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 16:30:02,258 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 16:55:19,772 - octoprint.server.api.system - INFO - Performing command for custom:poff: printer_off.sh 2017-04-21 16:55:22,224 - octoprint.server.api.system - INFO - Performing command for custom:streamoff: sudo service webcamd stop 2017-04-21 16:55:24,082 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:01:30,014 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:01:40,756 - octoprint.server.api.system - INFO - Performing command for custom:streamoff: sudo service webcamd stop 2017-04-21 18:01:42,797 - octoprint.server.api.system - INFO - Performing command for custom:streamon: sudo service webcamd start 2017-04-21 18:01:48,867 - octoprint.server.api.system - INFO - Performing command for custom:pon: printer_on.sh 2017-04-21 18:02:03,864 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:02:04,619 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:02:18,608 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 18:19:57,705 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:19:58,117 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M20 | Recv: Begin file list | Recv: End file list | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:19:58,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: End file list | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:19:58,203 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:19:58,225 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:19:58,248 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:56,338 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped. 2017-04-21 18:20:58,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:58,156 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:58,180 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:58,207 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:20:58,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:21:06,703 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now 2017-04-21 18:21:06,826 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:21:06,910 - octoprint.server - INFO - Shutting down... 2017-04-21 18:21:07,297 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-04-21 18:21:07,299 - octoprint.events - INFO - Event loop shut down 2017-04-21 18:21:07,312 - octoprint.server - INFO - Goodbye! 2017-04-21 18:21:13,679 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 18:21:13,681 - octoprint.server - INFO - Starting OctoPrint 1.3.2 (master branch) 2017-04-21 18:21:13,681 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 18:21:13,858 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 18:21:16,096 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 18:21:16,138 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 18:21:16,380 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 18:21:16,385 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2017-04-21 18:21:16,392 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2017-04-21 18:21:16,517 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-04-21 18:21:27,780 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 18:21:29,988 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 18:21:29,989 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 18:21:29,994 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2017-04-21 18:21:30,002 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 18:21:30,004 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 18:21:30,016 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2017-04-21 18:21:30,015 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:21:30,019 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 18:21:30,075 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 18:21:30,603 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 18:21:30,626 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 18:21:30,629 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 18:21:30,675 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-04-21 18:21:30,709 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 18:21:30,910 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 18:21:31,408 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1492798893152 (127.0.0.1) 344.99ms 2017-04-21 18:21:32,436 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1492798894523 (127.0.0.1) 15.22ms 2017-04-21 18:21:33,098 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798895160 (127.0.0.1) 40.95ms 2017-04-21 18:21:33,468 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1492798895556 (127.0.0.1) 13.01ms 2017-04-21 18:21:34,173 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798896222 (127.0.0.1) 54.93ms 2017-04-21 18:21:35,262 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798897292 (127.0.0.1) 65.54ms 2017-04-21 18:21:36,320 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798898375 (127.0.0.1) 49.83ms 2017-04-21 18:21:37,405 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798899428 (127.0.0.1) 49.79ms 2017-04-21 18:21:38,470 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798900519 (127.0.0.1) 42.89ms 2017-04-21 18:21:39,583 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798901592 (127.0.0.1) 61.48ms 2017-04-21 18:21:40,946 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798902696 (127.0.0.1) 285.00ms 2017-04-21 18:21:41,920 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798903967 (127.0.0.1) 55.22ms 2017-04-21 18:21:43,147 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798905039 (127.0.0.1) 52.81ms 2017-04-21 18:21:44,210 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798906260 (127.0.0.1) 53.27ms 2017-04-21 18:21:45,279 - tornado.access - WARNING - 404 GET /cached.gif?_=1492798907329 (127.0.0.1) 49.96ms 2017-04-21 18:21:45,349 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 18:21:46,465 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:http://192.168.1.240/:de), signaling as cached 2017-04-21 18:21:50,121 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 18:21:50,900 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:21:57,550 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 27.53s 2017-04-21 18:23:06,042 - octoprint.server.api.system - INFO - Performing command for custom:pon: printer_on.sh 2017-04-21 18:23:07,812 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:23:08,546 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:23:22,401 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 18:23:50,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:23:50,652 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:19.3 /0.0 B:20.0 /0.0 @:0 B@:0 | Send: M20 | Recv: Begin file list | Recv: End file list | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:23:50,678 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: End file list | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:23:50,701 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:23:50,723 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:23:50,745 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,672 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,722 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,746 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:24:50,771 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,706 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,733 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,759 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:25:50,784 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:06,247 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped. 2017-04-21 18:26:14,127 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped. 2017-04-21 18:26:19,796 - tornado.access - WARNING - 409 POST /api/printer/sd (127.0.0.1) 25.04ms 2017-04-21 18:26:23,142 - tornado.access - WARNING - 409 POST /api/printer/sd (127.0.0.1) 24.71ms 2017-04-21 18:26:25,458 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:26:26,203 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:26:50,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:50,724 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:50,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:50,773 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:26:50,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4 | Last lines in terminal: | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Recv: ok | Send: N1 M115*39 | Recv: ok | Send: N2 M110 N0*127 | Recv: ok | Send: N3 M140 S100.000000*73 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 2017-04-21 18:27:04,315 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart 2017-04-21 18:27:04,499 - octoprint.server - INFO - Shutting down... 2017-04-21 18:27:04,507 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-04-21 18:27:04,512 - octoprint.events - INFO - Event loop shut down 2017-04-21 18:27:04,518 - octoprint.server - INFO - Goodbye! 2017-04-21 18:27:06,476 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 18:27:06,477 - octoprint.server - INFO - Starting OctoPrint 1.3.2 (master branch) 2017-04-21 18:27:06,477 - octoprint.server - INFO - ****************************************************************************** 2017-04-21 18:27:06,546 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 18:27:08,028 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 18:27:08,054 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages... 2017-04-21 18:27:08,296 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 12 hook handlers 2017-04-21 18:27:08,301 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2017-04-21 18:27:08,306 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2017-04-21 18:27:08,429 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-04-21 18:27:10,647 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip 2017-04-21 18:27:12,854 - octoprint.util.pip - INFO - Version of pip is 9.0.1 2017-04-21 18:27:12,855 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-04-21 18:27:12,858 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2017-04-21 18:27:12,866 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/corewizard | Cost Plugin (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/cura | Cyborg Theme (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cyborgtheme | Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayprogress | Fullscreen Plugin (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/status_line | Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status | Touchtest Plugin (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchtest | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/plugins/virtual_printer 2017-04-21 18:27:12,867 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-04-21 18:27:12,879 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:27:12,892 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue 2017-04-21 18:27:12,901 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2017-04-21 18:27:12,937 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2017-04-21 18:27:13,378 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _http._tcp 2017-04-21 18:27:13,403 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for _octoprint._tcp 2017-04-21 18:27:13,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Anet A6" for SSDP 2017-04-21 18:27:13,436 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-04-21 18:27:13,460 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2017-04-21 18:27:13,633 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://192.168.1.240/'} 2017-04-21 18:27:14,881 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:27:26,176 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://aneta6printer.ddns.net/'} 2017-04-21 18:27:30,771 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://77.21.237.14/'} 2017-04-21 18:27:37,226 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-21 18:27:39,606 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 26.73s 2017-04-21 18:35:17,587 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:35:18,022 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-21 18:35:25,876 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 7.85s 2017-04-21 18:36:18,528 - octoprint.server.api.system - INFO - Performing command for custom:poff: printer_off.sh 2017-04-21 18:36:20,835 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.2-py2.7.egg/octoprint/util/comm.py", line 1792, in _readline ret = self._serial.readline() File "build/bdist.linux-armv7l/egg/serial/serialposix.py", line 475, in read raise SerialException('device reports readiness to read but returned no data (device disconnected or multiple access on port?)') SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?) 2017-04-21 18:36:24,367 - octoprint.server.api.system - INFO - Performing command for custom:loff: light_off.sh 2017-04-21 18:36:25,966 - octoprint.server.api.system - INFO - Performing command for custom:loff: light_off.sh 2017-04-21 18:36:27,614 - octoprint.server.api.system - INFO - Performing command for custom:streamoff: sudo service webcamd stop 2017-04-21 18:36:31,133 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 18:58:48,671 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-21 18:59:43,260 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-21 21:55:44,334 - tornado.access - WARNING - 404 GET //README (127.0.0.1) 11.25ms 2017-04-21 21:55:44,911 - tornado.access - WARNING - 404 GET /horde//README (127.0.0.1) 9.29ms 2017-04-21 21:55:45,489 - tornado.access - WARNING - 404 GET /horde2//README (127.0.0.1) 9.39ms 2017-04-21 21:55:46,077 - tornado.access - WARNING - 404 GET /horde3//README (127.0.0.1) 9.15ms 2017-04-21 21:55:46,650 - tornado.access - WARNING - 404 GET /horde-3.0.9//README (127.0.0.1) 9.23ms 2017-04-21 21:55:47,215 - tornado.access - WARNING - 404 GET /Horde//README (127.0.0.1) 9.32ms 2017-04-21 23:59:26,784 - tornado.access - WARNING - 404 GET http://httpheader.net/ (127.0.0.1) 13.14ms 2017-04-22 01:39:14,764 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-22 01:39:16,403 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.26s 2017-04-22 01:39:17,554 - octoprint.server.api.system - INFO - Performing command for custom:pon: printer_on.sh 2017-04-22 01:39:23,703 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239 2017-04-22 01:39:24,565 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.239 2017-04-22 01:39:43,023 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-22 01:40:04,883 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Staubkappe_V3.gcode 2017-04-22 01:43:52,420 - octoprint.util.comm - INFO - Finished in 227.410 s. Approx. transfer rate of 123.526 lines/s or 8.095 ms per line 2017-04-22 01:43:52,425 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Staubkappe_V3.gcode 2017-04-22 01:43:58,341 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Staubkappe_V3.gcode finished, needed 5.92s 2017-04-22 01:46:56,867 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-22 01:46:57,289 - octoprint.util.comm - WARNING - Printer requested line 1 but no sufficient history is available, can't resend. Printer requested line 1, current line is 28094, line history has 50 entries. 2017-04-22 01:46:57,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 28094 | Last lines in terminal: | Send: M105 | Recv: ok T:18.6 /0.0 B:19.3 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:18.6 /0.0 B:19.3 /0.0 @:0 B@:0 | Send: M20 | Recv: Begin file list | Recv: End file list | Recv: ok | Send: N28092 M110 N0*124 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N28093 M140 S100.000000*74 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Printer requested line 1 but no sufficient history is available, can't resend | Changing monitoring state from 'Sending file to SD' to 'Error: Printer requested line 1 but no sufficient history is available, can't resend' 2017-04-22 01:46:57,292 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-22 01:47:05,121 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 7.83s 2017-04-22 01:49:06,992 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin SkyNet3D-v2.3.1 (Github)" 2017-04-22 01:49:22,138 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Fan.gcode 2017-04-22 01:49:35,799 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Fan.gcode finished, needed 13.66s 2017-04-22 01:57:58,473 - octoprint.util.comm - INFO - Finished in 516.314 s. Approx. transfer rate of 120.967 lines/s or 8.267 ms per line 2017-04-22 01:58:30,403 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-22 01:58:30,959 - octoprint.util.comm - WARNING - Printer requested line 1 but no sufficient history is available, can't resend. Printer requested line 1, current line is 62460, line history has 50 entries. 2017-04-22 01:58:30,962 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Osveshenie_ver2.0.gcode 2017-04-22 01:58:30,977 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 62460 | Last lines in terminal: | Send: M105 | Recv: ok T:18.6 /0.0 B:19.3 /0.0 @:0 B@:0 | Send: M105 | Recv: ok T:18.6 /0.0 B:19.3 /0.0 @:0 B@:0 | Send: M20 | Recv: Begin file list | Recv: End file list | Recv: ok | Send: N62458 M110 N0*112 | Recv: ok | Send: M28 /osvesh~1.gco | Recv: echo:Now fresh file: /osvesh~1.gco | Recv: Writing to file: /osvesh~1.gco | Changing monitoring state from 'Operational' to 'Sending file to SD' | Recv: ok | Send: N62459 M140 S100.000000*70 | Recv: Error:Line Number is not Last Line Number+1, Last Line: 0 | Recv: Resend: 1 | Printer requested line 1 but no sufficient history is available, can't resend | Changing monitoring state from 'Sending file to SD' to 'Error: Printer requested line 1 but no sufficient history is available, can't resend' 2017-04-22 01:58:38,837 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Osveshenie_ver2.0.gcode finished, needed 7.88s 2017-04-22 02:02:43,342 - tornado.access - WARNING - 409 POST /api/files/sdcard (127.0.0.1) 446.15ms 2017-04-22 02:09:47,172 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.239
SerialException
def uploadGcodeFile(target): input_name = "file" input_upload_name = ( input_name + "." + settings().get(["server", "uploads", "nameSuffix"]) ) input_upload_path = ( input_name + "." + settings().get(["server", "uploads", "pathSuffix"]) ) if input_upload_name in request.values and input_upload_path in request.values: if not target in [FileDestinations.LOCAL, FileDestinations.SDCARD]: return make_response("Unknown target: %s" % target, 404) upload = octoprint.filemanager.util.DiskFileWrapper( request.values[input_upload_name], request.values[input_upload_path] ) # Store any additional user data the caller may have passed. userdata = None if "userdata" in request.values: import json try: userdata = json.loads(request.values["userdata"]) except: return make_response("userdata contains invalid JSON", 400) if target == FileDestinations.SDCARD and not settings().getBoolean( ["feature", "sdSupport"] ): return make_response("SD card support is disabled", 404) sd = target == FileDestinations.SDCARD selectAfterUpload = ( "select" in request.values.keys() and request.values["select"] in valid_boolean_trues ) printAfterSelect = ( "print" in request.values.keys() and request.values["print"] in valid_boolean_trues ) if sd: # validate that all preconditions for SD upload are met before attempting it if not ( printer.is_operational() and not (printer.is_printing() or printer.is_paused()) ): return make_response( "Can not upload to SD card, printer is either not operational or already busy", 409, ) if not printer.is_sd_ready(): return make_response( "Can not upload to SD card, not yet initialized", 409 ) # determine future filename of file to be uploaded, abort if it can't be uploaded try: # FileDestinations.LOCAL = should normally be target, but can't because SDCard handling isn't implemented yet futurePath, futureFilename = fileManager.sanitize( FileDestinations.LOCAL, upload.filename ) except: futurePath = None futureFilename = None if futureFilename is None: return make_response( "Can not upload file %s, wrong format?" % upload.filename, 415 ) if "path" in request.values and request.values["path"]: # we currently only support uploads to sdcard via local, so first target is local instead of "target" futurePath = fileManager.sanitize_path( FileDestinations.LOCAL, request.values["path"] ) # prohibit overwriting currently selected file while it's being printed futureFullPath = fileManager.join_path( FileDestinations.LOCAL, futurePath, futureFilename ) futureFullPathInStorage = fileManager.path_in_storage( FileDestinations.LOCAL, futureFullPath ) if not printer.can_modify_file(futureFullPathInStorage, sd): return make_response( "Trying to overwrite file that is currently being printed: %s" % futureFullPath, 409, ) reselect = printer.is_current_file(futureFullPathInStorage, sd) def fileProcessingFinished(filename, absFilename, destination): """ Callback for when the file processing (upload, optional slicing, addition to analysis queue) has finished. Depending on the file's destination triggers either streaming to SD card or directly calls selectAndOrPrint. """ if ( destination == FileDestinations.SDCARD and octoprint.filemanager.valid_file_type(filename, "gcode") ): return filename, printer.add_sd_file( filename, absFilename, selectAndOrPrint ) else: selectAndOrPrint(filename, absFilename, destination) return filename def selectAndOrPrint(filename, absFilename, destination): """ Callback for when the file is ready to be selected and optionally printed. For SD file uploads this is only the case after they have finished streaming to the printer, which is why this callback is also used for the corresponding call to addSdFile. Selects the just uploaded file if either selectAfterUpload or printAfterSelect are True, or if the exact file is already selected, such reloading it. """ if octoprint.filemanager.valid_file_type(added_file, "gcode") and ( selectAfterUpload or printAfterSelect or reselect ): printer.select_file( absFilename, destination == FileDestinations.SDCARD, printAfterSelect, ) try: added_file = fileManager.add_file( FileDestinations.LOCAL, futureFullPathInStorage, upload, allow_overwrite=True, ) except octoprint.filemanager.storage.StorageError as e: if e.code == octoprint.filemanager.storage.StorageError.INVALID_FILE: return make_response( 'Could not upload the file "{}", invalid type'.format( upload.filename ), 400, ) else: return make_response( 'Could not upload the file "{}"'.format(upload.filename), 500 ) if octoprint.filemanager.valid_file_type(added_file, "stl"): filename = added_file done = True else: filename = fileProcessingFinished( added_file, fileManager.path_on_disk(FileDestinations.LOCAL, added_file), target, ) done = not sd if userdata is not None: # upload included userdata, add this now to the metadata fileManager.set_additional_metadata( FileDestinations.LOCAL, added_file, "userdata", userdata ) sdFilename = None if isinstance(filename, tuple): filename, sdFilename = filename eventManager.fire( Events.UPLOAD, { "name": futureFilename, "path": filename, "target": target, # TODO deprecated, remove in 1.4.0 "file": filename, }, ) files = {} location = url_for( ".readGcodeFile", target=FileDestinations.LOCAL, filename=filename, _external=True, ) files.update( { FileDestinations.LOCAL: { "name": futureFilename, "path": filename, "origin": FileDestinations.LOCAL, "refs": { "resource": location, "download": url_for("index", _external=True) + "downloads/files/" + FileDestinations.LOCAL + "/" + filename, }, } } ) if sd and sdFilename: location = url_for( ".readGcodeFile", target=FileDestinations.SDCARD, filename=sdFilename, _external=True, ) files.update( { FileDestinations.SDCARD: { "name": sdFilename, "path": sdFilename, "origin": FileDestinations.SDCARD, "refs": {"resource": location}, } } ) r = make_response(jsonify(files=files, done=done), 201) r.headers["Location"] = location return r elif "foldername" in request.values: foldername = request.values["foldername"] if not target in [FileDestinations.LOCAL]: return make_response("Unknown target: %s" % target, 400) futurePath, futureName = fileManager.sanitize(target, foldername) if not futureName or not futurePath: return make_response("Can't create a folder with an empty name", 400) if "path" in request.values and request.values["path"]: futurePath = fileManager.sanitize_path( FileDestinations.LOCAL, request.values["path"] ) futureFullPath = fileManager.join_path(target, futurePath, futureName) if octoprint.filemanager.valid_file_type(futureName): return make_response( "Can't create a folder named %s, please try another name" % futureName, 409, ) try: added_folder = fileManager.add_folder(target, futureFullPath) except octoprint.filemanager.storage.StorageError as e: if e.code == octoprint.filemanager.storage.StorageError.INVALID_DIRECTORY: return make_response( "Could not create folder {}, invalid directory".format(futureName) ) else: return make_response("Could not create folder {}".format(futureName)) location = url_for( ".readGcodeFile", target=FileDestinations.LOCAL, filename=added_folder, _external=True, ) folder = dict( name=futureName, path=added_folder, origin=target, refs=dict(resource=location), ) r = make_response(jsonify(folder=folder, done=True), 201) r.headers["Location"] = location return r else: return make_response("No file to upload and no folder to create", 400)
def uploadGcodeFile(target): input_name = "file" input_upload_name = ( input_name + "." + settings().get(["server", "uploads", "nameSuffix"]) ) input_upload_path = ( input_name + "." + settings().get(["server", "uploads", "pathSuffix"]) ) if input_upload_name in request.values and input_upload_path in request.values: if not target in [FileDestinations.LOCAL, FileDestinations.SDCARD]: return make_response("Unknown target: %s" % target, 404) upload = octoprint.filemanager.util.DiskFileWrapper( request.values[input_upload_name], request.values[input_upload_path] ) # Store any additional user data the caller may have passed. userdata = None if "userdata" in request.values: import json try: userdata = json.loads(request.values["userdata"]) except: return make_response("userdata contains invalid JSON", 400) if target == FileDestinations.SDCARD and not settings().getBoolean( ["feature", "sdSupport"] ): return make_response("SD card support is disabled", 404) sd = target == FileDestinations.SDCARD selectAfterUpload = ( "select" in request.values.keys() and request.values["select"] in valid_boolean_trues ) printAfterSelect = ( "print" in request.values.keys() and request.values["print"] in valid_boolean_trues ) if sd: # validate that all preconditions for SD upload are met before attempting it if not ( printer.is_operational() and not (printer.is_printing() or printer.is_paused()) ): return make_response( "Can not upload to SD card, printer is either not operational or already busy", 409, ) if not printer.is_sd_ready(): return make_response( "Can not upload to SD card, not yet initialized", 409 ) # determine current job currentPath = None currentFilename = None currentOrigin = None currentJob = printer.get_current_job() if currentJob is not None and "file" in currentJob.keys(): currentJobFile = currentJob["file"] if ( currentJobFile is not None and "name" in currentJobFile.keys() and "origin" in currentJobFile.keys() and currentJobFile["name"] is not None and currentJobFile["origin"] is not None ): currentPath, currentFilename = fileManager.sanitize( FileDestinations.LOCAL, currentJobFile["name"] ) currentOrigin = currentJobFile["origin"] # determine future filename of file to be uploaded, abort if it can't be uploaded try: # FileDestinations.LOCAL = should normally be target, but can't because SDCard handling isn't implemented yet futurePath, futureFilename = fileManager.sanitize( FileDestinations.LOCAL, upload.filename ) except: futurePath = None futureFilename = None if futureFilename is None: return make_response( "Can not upload file %s, wrong format?" % upload.filename, 415 ) if "path" in request.values and request.values["path"]: # we currently only support uploads to sdcard via local, so first target is local instead of "target" futurePath = fileManager.sanitize_path( FileDestinations.LOCAL, request.values["path"] ) # prohibit overwriting currently selected file while it's being printed if ( futurePath == currentPath and futureFilename == currentFilename and target == currentOrigin and (printer.is_printing() or printer.is_paused()) ): return make_response( "Trying to overwrite file that is currently being printed: %s" % currentFilename, 409, ) def fileProcessingFinished(filename, absFilename, destination): """ Callback for when the file processing (upload, optional slicing, addition to analysis queue) has finished. Depending on the file's destination triggers either streaming to SD card or directly calls selectAndOrPrint. """ if ( destination == FileDestinations.SDCARD and octoprint.filemanager.valid_file_type(filename, "gcode") ): return filename, printer.add_sd_file( filename, absFilename, selectAndOrPrint ) else: selectAndOrPrint(filename, absFilename, destination) return filename def selectAndOrPrint(filename, absFilename, destination): """ Callback for when the file is ready to be selected and optionally printed. For SD file uploads this is only the case after they have finished streaming to the printer, which is why this callback is also used for the corresponding call to addSdFile. Selects the just uploaded file if either selectAfterUpload or printAfterSelect are True, or if the exact file is already selected, such reloading it. """ if octoprint.filemanager.valid_file_type(added_file, "gcode") and ( selectAfterUpload or printAfterSelect or (currentFilename == filename and currentOrigin == destination) ): printer.select_file( absFilename, destination == FileDestinations.SDCARD, printAfterSelect, ) futureFullPath = fileManager.join_path( FileDestinations.LOCAL, futurePath, futureFilename ) try: added_file = fileManager.add_file( FileDestinations.LOCAL, futureFullPath, upload, allow_overwrite=True ) except octoprint.filemanager.storage.StorageError as e: if e.code == octoprint.filemanager.storage.StorageError.INVALID_FILE: return make_response( 'Could not upload the file "{}", invalid type'.format( upload.filename ), 400, ) else: return make_response( 'Could not upload the file "{}"'.format(upload.filename), 500 ) if octoprint.filemanager.valid_file_type(added_file, "stl"): filename = added_file done = True else: filename = fileProcessingFinished( added_file, fileManager.path_on_disk(FileDestinations.LOCAL, added_file), target, ) done = not sd if userdata is not None: # upload included userdata, add this now to the metadata fileManager.set_additional_metadata( FileDestinations.LOCAL, added_file, "userdata", userdata ) sdFilename = None if isinstance(filename, tuple): filename, sdFilename = filename eventManager.fire( Events.UPLOAD, { "name": futureFilename, "path": filename, "target": target, # TODO deprecated, remove in 1.4.0 "file": filename, }, ) files = {} location = url_for( ".readGcodeFile", target=FileDestinations.LOCAL, filename=filename, _external=True, ) files.update( { FileDestinations.LOCAL: { "name": futureFilename, "path": filename, "origin": FileDestinations.LOCAL, "refs": { "resource": location, "download": url_for("index", _external=True) + "downloads/files/" + FileDestinations.LOCAL + "/" + filename, }, } } ) if sd and sdFilename: location = url_for( ".readGcodeFile", target=FileDestinations.SDCARD, filename=sdFilename, _external=True, ) files.update( { FileDestinations.SDCARD: { "name": sdFilename, "path": sdFilename, "origin": FileDestinations.SDCARD, "refs": {"resource": location}, } } ) r = make_response(jsonify(files=files, done=done), 201) r.headers["Location"] = location return r elif "foldername" in request.values: foldername = request.values["foldername"] if not target in [FileDestinations.LOCAL]: return make_response("Unknown target: %s" % target, 400) futurePath, futureName = fileManager.sanitize(target, foldername) if not futureName or not futurePath: return make_response("Can't create a folder with an empty name", 400) if "path" in request.values and request.values["path"]: futurePath = fileManager.sanitize_path( FileDestinations.LOCAL, request.values["path"] ) futureFullPath = fileManager.join_path(target, futurePath, futureName) if octoprint.filemanager.valid_file_type(futureName): return make_response( "Can't create a folder named %s, please try another name" % futureName, 409, ) try: added_folder = fileManager.add_folder(target, futureFullPath) except octoprint.filemanager.storage.StorageError as e: if e.code == octoprint.filemanager.storage.StorageError.INVALID_DIRECTORY: return make_response( "Could not create folder {}, invalid directory".format(futureName) ) else: return make_response("Could not create folder {}".format(futureName)) location = url_for( ".readGcodeFile", target=FileDestinations.LOCAL, filename=added_folder, _external=True, ) folder = dict( name=futureName, path=added_folder, origin=target, refs=dict(resource=location), ) r = make_response(jsonify(folder=folder, done=True), 201) r.headers["Location"] = location return r else: return make_response("No file to upload and no folder to create", 400)
https://github.com/OctoPrint/OctoPrint/issues/1760
2017-02-07 09:49:06,404 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:11,193 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:16,081 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:49:16,900 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:17,618 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:19,717 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 09:49:27,026 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2017-02-07 09:49:29,474 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:56:03,900 - octoprint.server - INFO - Shutting down... 2017-02-07 09:56:04,894 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 09:56:04,899 - octoprint.events - INFO - Event loop shut down 2017-02-07 09:56:04,912 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:57,824 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:57,946 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:00,222 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:00,227 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,281 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,757 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,764 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:11,294 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:11,377 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:13,154 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:14,665 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:14,666 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:14,669 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:14,676 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:14,678 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:14,903 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:14,954 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:15,591 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:15,599 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:24,321 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:24,466 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,831 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,921 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:32,106 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:32,259 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:03:25,743 - octoprint.server - INFO - Shutting down... 2017-02-07 10:03:26,086 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 10:03:26,089 - octoprint.events - INFO - Event loop shut down 2017-02-07 10:03:26,095 - octoprint.server - INFO - Goodbye! 2017-01-31 20:11:03,613 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:11:03,732 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,832 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:05,837 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:10,883 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:11,442 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:11,450 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:16,925 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:17,929 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:19,821 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:21,505 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:21,506 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:21,508 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:21,516 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:21,521 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:21,747 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,798 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:22,435 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:22,443 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:23,541 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:23,667 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,071 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,887 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:30,701 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,093 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:32:19,908 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 10:54:33,623 - octoprint.util.comm - INFO - Finished in 1329.237 s. 2017-02-07 10:54:37,352 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:06:13,944 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 11:06:22,203 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 11:20:10,947 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 11:25:53,809 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 9.65ms 2017-02-07 11:25:55,882 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:25:59,988 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 128.12ms 2017-02-07 11:26:00,623 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 11.45ms 2017-02-07 11:26:03,078 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 19.80ms 2017-02-07 11:26:03,844 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.52ms 2017-02-07 11:26:06,148 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.76ms 2017-02-07 11:26:06,975 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.18ms 2017-02-07 11:26:09,231 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.34ms 2017-02-07 11:26:10,060 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.55ms 2017-02-07 11:26:12,371 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.48ms 2017-02-07 11:26:13,124 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.74ms 2017-02-07 11:26:15,460 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.92ms 2017-02-07 11:26:16,195 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.39ms 2017-02-07 11:26:18,531 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.69ms 2017-02-07 11:26:19,252 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.00ms 2017-02-07 11:26:21,635 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.67ms 2017-02-07 11:26:22,325 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.97ms 2017-02-07 11:30:06,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 11:56:46,427 - octoprint.util.comm - INFO - Finished in 1813.310 s. 2017-02-07 11:56:49,996 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 13:07:44,932 - octoprint.server - INFO - Shutting down... 2017-02-07 13:07:45,512 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 13:07:45,516 - octoprint.events - INFO - Event loop shut down 2017-02-07 13:07:45,527 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,668 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,809 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:56,075 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:56,079 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,150 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,717 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,724 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:07,228 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:07,311 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:09,093 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,729 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,730 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,734 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,744 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,746 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,996 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:11,047 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:11,683 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:11,691 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:12,354 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:12,483 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,899 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,988 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:19,549 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:12:15,985 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:12:16,763 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 14:08:42,050 - octoprint.server - INFO - Shutting down... 2017-02-07 14:08:42,269 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:08:42,274 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:08:42,287 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:59,428 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:59,587 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:02,178 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:02,183 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,246 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:07,686 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,693 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:13,279 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:13,363 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:15,156 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:16,680 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:16,681 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:16,684 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:16,691 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:16,693 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:20,403 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:20,409 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,251 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:21,260 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:21,947 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:21,978 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-01-31 20:11:22,335 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:22,428 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:28,095 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:11:28,965 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,541 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 14:18:19,309 - octoprint.server - INFO - Shutting down... 2017-02-07 14:18:19,689 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:18:19,695 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:18:19,706 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,397 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,517 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:55,623 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:55,628 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:00,676 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,105 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,112 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:06,661 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:06,744 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:08,526 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,043 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,044 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,047 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,055 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,058 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,287 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:10,338 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:10,982 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:10,990 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:11,792 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:11,899 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,239 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,329 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:18,670 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:19,337 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 14:28:41,558 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:12:44,685 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:12:45,226 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:04,086 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:21,326 - octoprint.server - INFO - Shutting down... 2017-02-07 15:13:21,469 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 15:13:21,475 - octoprint.events - INFO - Event loop shut down 2017-02-07 15:13:21,487 - octoprint.server - INFO - Goodbye! 2017-02-07 15:14:05,838 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-02-07 15:14:05,902 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:07,534 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-02-07 15:14:07,539 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:12,570 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:13,096 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:13,107 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-02-07 15:14:18,934 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-02-07 15:14:19,013 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-02-07 15:14:20,543 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-02-07 15:14:22,067 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-02-07 15:14:22,068 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-02-07 15:14:22,070 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-02-07 15:14:22,078 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-02-07 15:14:22,080 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-02-07 15:14:22,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 15:14:22,361 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-02-07 15:14:23,003 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-02-07 15:14:23,014 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-02-07 15:14:23,783 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-02-07 15:14:23,889 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-02-07 15:14:24,144 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-02-07 15:14:24,181 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498463718 (192.168.178.20) 26.96ms 2017-02-07 15:14:24,255 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-02-07 15:14:25,973 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498465861 (192.168.178.20) 11.65ms 2017-02-07 15:14:27,878 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498467716 (192.168.178.20) 11.49ms 2017-02-07 15:14:27,975 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498467918 (192.168.178.20) 37.15ms 2017-02-07 15:14:30,332 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498470129 (192.168.178.20) 12.54ms 2017-02-07 15:14:30,375 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498470130 (192.168.178.20) 36.25ms 2017-02-07 15:14:32,446 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498472130 (192.168.178.20) 119.12ms 2017-02-07 15:14:33,015 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 15:14:34,774 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498474145 (192.168.178.20) 272.46ms 2017-02-07 15:14:36,770 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:http://octopi.local:5000/:en), signaling as cached 2017-02-07 15:14:39,925 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:14:40,953 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:18:22,461 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode' 2017-02-07 15:28:11,368 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:38:11,906 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:38:12,161 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:38:30,899 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 16:00:06,207 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 16:00:06,858 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 16:00:08,914 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.16s 2017-02-07 16:06:05,465 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 16:10:27,627 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:02:58,835 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/2x3erWago_mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/2x3erWago_mount-PLA.gcode' 2017-02-07 17:15:57,956 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:15:58,893 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:16:01,718 - octoprint.util.comm - INFO - Finished in 7051.156 s. 2017-02-07 17:16:05,544 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:29:51,949 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:30:45,223 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:43:42,432 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:43:43,160 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:43:47,557 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:58:22,148 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:58:22,889 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:00:27,754 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 18:06:21,537 - octoprint.util.comm - INFO - Finished in 2180.785 s. 2017-02-07 18:06:25,501 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 18:06:34,611 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 18:06:35,234 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:55:08,678 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 19:02:02,743 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 19:33:42,721 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 19:33:42,732 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:14:59,641 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:25,944 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:15:26,706 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:27,450 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 20:29:06,476 - octoprint.util.comm - INFO - Finished in 917.133 s. 2017-02-07 20:29:10,442 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 22:25:40,308 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 22:25:49,146 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:14:55,040 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:14:55,276 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 23:14:57,274 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 23:40:37,121 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 23:40:37,128 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:40:44,540 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:42:38,491 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-08 00:27:32,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83663 G1 X120.457 Y108.997 E0.4843*90 | Recv: ok | Send: N83664 G1 X96.100 Y109.397 F5400*122 | Recv: ok | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,176 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,194 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,242 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,187 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,223 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,241 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,259 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,222 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,240 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,245 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,264 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,281 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,220 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,274 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,327 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,294 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,330 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,362 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,333 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,298 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,316 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,334 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,351 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,299 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,317 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,335 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,353 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,370 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,303 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,311 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,325 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,343 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,396 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,355 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,390 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,408 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,349 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,401 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,419 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,376 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,394 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,412 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,400 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,418 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,436 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,373 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,391 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,409 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,427 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,445 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,375 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,393 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,428 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,389 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,406 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,424 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,430 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,447 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,405 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,423 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,477 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,410 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,483 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,414 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,432 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,451 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,469 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,425 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,444 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,461 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,438 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,456 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,474 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,492 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,509 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,439 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,457 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,475 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,493 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,510 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,462 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,470 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,505 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,522 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,540 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,471 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,489 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,507 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,525 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,543 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,551 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,535 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,553 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,484 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,503 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,556 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,494 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,513 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,530 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,573 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,519 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,537 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,514 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,531 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,524 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,541 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,559 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,577 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,595 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,536 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,554 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,590 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,607 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,539 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,557 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,592 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,610 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,542 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,614 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,545 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,562 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,580 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,598 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,633 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,567 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,642 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,660 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,591 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,608 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,626 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,644 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,620 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,638 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,655 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,609 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,627 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,680 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,622 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,630 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,647 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,665 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,683 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,701 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,666 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,685 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,702 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,720 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,738 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,690 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,708 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,695 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,714 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,731 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,749 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,767 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,770 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,727 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,766 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,747 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,743 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,796 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,815 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,754 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,772 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,826 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,781 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,799 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,817 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,834 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,821 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,787 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,805 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,823 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,773 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,784 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,802 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,819 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,837 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,788 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,806 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,824 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,795 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,831 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,849 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,866 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,807 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,818 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,836 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,854 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,872 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,890 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,829 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,848 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,865 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,883 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,901 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,859 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,877 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,920 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,938 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,873 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,891 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,909 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,926 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,858 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,875 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,893 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,862 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,880 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,929 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,947 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,869 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,887 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,905 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,923 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,940 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,896 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,914 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,932 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,949 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,899 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,917 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,935 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,953 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,971 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,907 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,925 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,943 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,961 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,910 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,963 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,916 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,934 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,952 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,970 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,988 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,942 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,960 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,941 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,959 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,977 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,995 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,965 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,966 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,999 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:33,017 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,951 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,968 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,986 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,004 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,021 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,982 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,000 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,035 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,976 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,993 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,011 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,029 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,047 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:32,985 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,002 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,020 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,023 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,041 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,059 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,077 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,010 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,028 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,046 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,064 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,082 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,054 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,019 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,073 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,033 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,051 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,069 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,086 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,104 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,042 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,061 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,078 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,052 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,070 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,088 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,106 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,057 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,074 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,062 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,108 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,126 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,144 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,075 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,145 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,098 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,080 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,097 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,150 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,107 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,166 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,184 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,101 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,118 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,136 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,128 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,147 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,164 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,182 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,111 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,129 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,160 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,178 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,196 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,149 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,167 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,185 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,116 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,189 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,119 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,123 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,142 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,159 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,177 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,195 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,168 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,186 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,135 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,141 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,175 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,193 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,155 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,173 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,191 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,209 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,165 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,183 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,236 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,180 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,198 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,216 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,192 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,228 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,213 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,231 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,249 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,284 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,282 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,300 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,248 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,256 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,336 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,275 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,304 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,296 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,314 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,322 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,340 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,293 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,354 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,382 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,345 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,363 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,380 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,398 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,331 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,368 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,385 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,403 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:01:33,346 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671
OSError
def selectAndOrPrint(filename, absFilename, destination): """ Callback for when the file is ready to be selected and optionally printed. For SD file uploads this is only the case after they have finished streaming to the printer, which is why this callback is also used for the corresponding call to addSdFile. Selects the just uploaded file if either selectAfterUpload or printAfterSelect are True, or if the exact file is already selected, such reloading it. """ if octoprint.filemanager.valid_file_type(added_file, "gcode") and ( selectAfterUpload or printAfterSelect or reselect ): printer.select_file( absFilename, destination == FileDestinations.SDCARD, printAfterSelect )
def selectAndOrPrint(filename, absFilename, destination): """ Callback for when the file is ready to be selected and optionally printed. For SD file uploads this is only the case after they have finished streaming to the printer, which is why this callback is also used for the corresponding call to addSdFile. Selects the just uploaded file if either selectAfterUpload or printAfterSelect are True, or if the exact file is already selected, such reloading it. """ if octoprint.filemanager.valid_file_type(added_file, "gcode") and ( selectAfterUpload or printAfterSelect or (currentFilename == filename and currentOrigin == destination) ): printer.select_file( absFilename, destination == FileDestinations.SDCARD, printAfterSelect )
https://github.com/OctoPrint/OctoPrint/issues/1760
2017-02-07 09:49:06,404 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:11,193 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:16,081 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:49:16,900 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:17,618 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:19,717 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 09:49:27,026 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2017-02-07 09:49:29,474 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:56:03,900 - octoprint.server - INFO - Shutting down... 2017-02-07 09:56:04,894 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 09:56:04,899 - octoprint.events - INFO - Event loop shut down 2017-02-07 09:56:04,912 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:57,824 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:57,946 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:00,222 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:00,227 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,281 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,757 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,764 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:11,294 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:11,377 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:13,154 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:14,665 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:14,666 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:14,669 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:14,676 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:14,678 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:14,903 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:14,954 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:15,591 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:15,599 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:24,321 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:24,466 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,831 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,921 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:32,106 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:32,259 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:03:25,743 - octoprint.server - INFO - Shutting down... 2017-02-07 10:03:26,086 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 10:03:26,089 - octoprint.events - INFO - Event loop shut down 2017-02-07 10:03:26,095 - octoprint.server - INFO - Goodbye! 2017-01-31 20:11:03,613 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:11:03,732 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,832 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:05,837 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:10,883 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:11,442 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:11,450 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:16,925 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:17,929 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:19,821 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:21,505 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:21,506 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:21,508 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:21,516 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:21,521 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:21,747 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,798 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:22,435 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:22,443 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:23,541 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:23,667 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,071 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,887 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:30,701 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,093 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:32:19,908 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 10:54:33,623 - octoprint.util.comm - INFO - Finished in 1329.237 s. 2017-02-07 10:54:37,352 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:06:13,944 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 11:06:22,203 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 11:20:10,947 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 11:25:53,809 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 9.65ms 2017-02-07 11:25:55,882 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:25:59,988 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 128.12ms 2017-02-07 11:26:00,623 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 11.45ms 2017-02-07 11:26:03,078 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 19.80ms 2017-02-07 11:26:03,844 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.52ms 2017-02-07 11:26:06,148 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.76ms 2017-02-07 11:26:06,975 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.18ms 2017-02-07 11:26:09,231 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.34ms 2017-02-07 11:26:10,060 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.55ms 2017-02-07 11:26:12,371 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.48ms 2017-02-07 11:26:13,124 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.74ms 2017-02-07 11:26:15,460 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.92ms 2017-02-07 11:26:16,195 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.39ms 2017-02-07 11:26:18,531 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.69ms 2017-02-07 11:26:19,252 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.00ms 2017-02-07 11:26:21,635 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.67ms 2017-02-07 11:26:22,325 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.97ms 2017-02-07 11:30:06,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 11:56:46,427 - octoprint.util.comm - INFO - Finished in 1813.310 s. 2017-02-07 11:56:49,996 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 13:07:44,932 - octoprint.server - INFO - Shutting down... 2017-02-07 13:07:45,512 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 13:07:45,516 - octoprint.events - INFO - Event loop shut down 2017-02-07 13:07:45,527 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,668 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,809 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:56,075 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:56,079 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,150 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,717 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,724 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:07,228 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:07,311 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:09,093 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,729 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,730 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,734 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,744 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,746 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,996 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:11,047 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:11,683 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:11,691 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:12,354 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:12,483 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,899 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,988 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:19,549 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:12:15,985 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:12:16,763 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 14:08:42,050 - octoprint.server - INFO - Shutting down... 2017-02-07 14:08:42,269 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:08:42,274 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:08:42,287 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:59,428 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:59,587 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:02,178 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:02,183 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,246 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:07,686 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,693 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:13,279 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:13,363 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:15,156 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:16,680 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:16,681 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:16,684 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:16,691 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:16,693 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:20,403 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:20,409 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,251 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:21,260 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:21,947 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:21,978 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-01-31 20:11:22,335 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:22,428 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:28,095 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:11:28,965 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,541 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 14:18:19,309 - octoprint.server - INFO - Shutting down... 2017-02-07 14:18:19,689 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:18:19,695 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:18:19,706 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,397 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,517 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:55,623 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:55,628 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:00,676 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,105 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,112 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:06,661 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:06,744 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:08,526 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,043 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,044 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,047 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,055 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,058 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,287 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:10,338 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:10,982 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:10,990 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:11,792 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:11,899 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,239 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,329 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:18,670 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:19,337 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 14:28:41,558 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:12:44,685 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:12:45,226 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:04,086 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:21,326 - octoprint.server - INFO - Shutting down... 2017-02-07 15:13:21,469 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 15:13:21,475 - octoprint.events - INFO - Event loop shut down 2017-02-07 15:13:21,487 - octoprint.server - INFO - Goodbye! 2017-02-07 15:14:05,838 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-02-07 15:14:05,902 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:07,534 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-02-07 15:14:07,539 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:12,570 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:13,096 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:13,107 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-02-07 15:14:18,934 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-02-07 15:14:19,013 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-02-07 15:14:20,543 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-02-07 15:14:22,067 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-02-07 15:14:22,068 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-02-07 15:14:22,070 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-02-07 15:14:22,078 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-02-07 15:14:22,080 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-02-07 15:14:22,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 15:14:22,361 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-02-07 15:14:23,003 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-02-07 15:14:23,014 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-02-07 15:14:23,783 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-02-07 15:14:23,889 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-02-07 15:14:24,144 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-02-07 15:14:24,181 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498463718 (192.168.178.20) 26.96ms 2017-02-07 15:14:24,255 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-02-07 15:14:25,973 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498465861 (192.168.178.20) 11.65ms 2017-02-07 15:14:27,878 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498467716 (192.168.178.20) 11.49ms 2017-02-07 15:14:27,975 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498467918 (192.168.178.20) 37.15ms 2017-02-07 15:14:30,332 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498470129 (192.168.178.20) 12.54ms 2017-02-07 15:14:30,375 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498470130 (192.168.178.20) 36.25ms 2017-02-07 15:14:32,446 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498472130 (192.168.178.20) 119.12ms 2017-02-07 15:14:33,015 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 15:14:34,774 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498474145 (192.168.178.20) 272.46ms 2017-02-07 15:14:36,770 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:http://octopi.local:5000/:en), signaling as cached 2017-02-07 15:14:39,925 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:14:40,953 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:18:22,461 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode' 2017-02-07 15:28:11,368 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:38:11,906 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:38:12,161 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:38:30,899 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 16:00:06,207 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 16:00:06,858 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 16:00:08,914 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.16s 2017-02-07 16:06:05,465 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 16:10:27,627 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:02:58,835 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/2x3erWago_mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/2x3erWago_mount-PLA.gcode' 2017-02-07 17:15:57,956 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:15:58,893 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:16:01,718 - octoprint.util.comm - INFO - Finished in 7051.156 s. 2017-02-07 17:16:05,544 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:29:51,949 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:30:45,223 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:43:42,432 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:43:43,160 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:43:47,557 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:58:22,148 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:58:22,889 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:00:27,754 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 18:06:21,537 - octoprint.util.comm - INFO - Finished in 2180.785 s. 2017-02-07 18:06:25,501 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 18:06:34,611 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 18:06:35,234 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:55:08,678 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 19:02:02,743 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 19:33:42,721 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 19:33:42,732 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:14:59,641 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:25,944 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:15:26,706 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:27,450 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 20:29:06,476 - octoprint.util.comm - INFO - Finished in 917.133 s. 2017-02-07 20:29:10,442 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 22:25:40,308 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 22:25:49,146 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:14:55,040 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:14:55,276 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 23:14:57,274 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 23:40:37,121 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 23:40:37,128 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:40:44,540 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:42:38,491 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-08 00:27:32,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83663 G1 X120.457 Y108.997 E0.4843*90 | Recv: ok | Send: N83664 G1 X96.100 Y109.397 F5400*122 | Recv: ok | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,176 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,194 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,242 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,187 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,223 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,241 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,259 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,222 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,240 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,245 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,264 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,281 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,220 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,274 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,327 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,294 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,330 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,362 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,333 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,298 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,316 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,334 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,351 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,299 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,317 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,335 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,353 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,370 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,303 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,311 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,325 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,343 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,396 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,355 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,390 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,408 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,349 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,401 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,419 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,376 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,394 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,412 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,400 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,418 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,436 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,373 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,391 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,409 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,427 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,445 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,375 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,393 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,428 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,389 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,406 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,424 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,430 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,447 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,405 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,423 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,477 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,410 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,483 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,414 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,432 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,451 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,469 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,425 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,444 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,461 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,438 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,456 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,474 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,492 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,509 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,439 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,457 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,475 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,493 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,510 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,462 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,470 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,505 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,522 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,540 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,471 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,489 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,507 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,525 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,543 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,551 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,535 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,553 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,484 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,503 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,556 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,494 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,513 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,530 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,573 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,519 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,537 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,514 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,531 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,524 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,541 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,559 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,577 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,595 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,536 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,554 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,590 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,607 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,539 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,557 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,592 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,610 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,542 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,614 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,545 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,562 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,580 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,598 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,633 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,567 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,642 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,660 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,591 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,608 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,626 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,644 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,620 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,638 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,655 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,609 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,627 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,680 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,622 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,630 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,647 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,665 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,683 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,701 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,666 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,685 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,702 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,720 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,738 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,690 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,708 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,695 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,714 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,731 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,749 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,767 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,770 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,727 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,766 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,747 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,743 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,796 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,815 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,754 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,772 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,826 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,781 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,799 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,817 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,834 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,821 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,787 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,805 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,823 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,773 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,784 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,802 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,819 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,837 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,788 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,806 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,824 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,795 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,831 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,849 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,866 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,807 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,818 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,836 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,854 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,872 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,890 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,829 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,848 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,865 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,883 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,901 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,859 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,877 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,920 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,938 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,873 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,891 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,909 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,926 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,858 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,875 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,893 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,862 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,880 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,929 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,947 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,869 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,887 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,905 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,923 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,940 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,896 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,914 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,932 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,949 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,899 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,917 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,935 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,953 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,971 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,907 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,925 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,943 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,961 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,910 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,963 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,916 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,934 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,952 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,970 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,988 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,942 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,960 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,941 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,959 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,977 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,995 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,965 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,966 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,999 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:33,017 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,951 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,968 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,986 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,004 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,021 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,982 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,000 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,035 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,976 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,993 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,011 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,029 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,047 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:32,985 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,002 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,020 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,023 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,041 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,059 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,077 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,010 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,028 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,046 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,064 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,082 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,054 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,019 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,073 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,033 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,051 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,069 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,086 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,104 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,042 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,061 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,078 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,052 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,070 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,088 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,106 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,057 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,074 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,062 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,108 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,126 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,144 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,075 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,145 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,098 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,080 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,097 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,150 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,107 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,166 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,184 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,101 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,118 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,136 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,128 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,147 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,164 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,182 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,111 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,129 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,160 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,178 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,196 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,149 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,167 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,185 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,116 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,189 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,119 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,123 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,142 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,159 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,177 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,195 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,168 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,186 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,135 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,141 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,175 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,193 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,155 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,173 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,191 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,209 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,165 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,183 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,236 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,180 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,198 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,216 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,192 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,228 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,213 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,231 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,249 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,284 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,282 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,300 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,248 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,256 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,336 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,275 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,304 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,296 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,314 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,322 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,340 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,293 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,354 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,382 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,345 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,363 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,380 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,398 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,331 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,368 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,385 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,403 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:01:33,346 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671
OSError
def _upload(self, path): try: file_wrapper = octoprint.filemanager.util.DiskFileWrapper( os.path.basename(path), path ) # determine future filename of file to be uploaded, abort if it can't be uploaded try: futurePath, futureFilename = self._file_manager.sanitize( octoprint.filemanager.FileDestinations.LOCAL, file_wrapper.filename ) except: futurePath = None futureFilename = None if futureFilename is None or ( len(self._file_manager.registered_slicers) == 0 and not octoprint.filemanager.valid_file_type(futureFilename) ): return # prohibit overwriting currently selected file while it's being printed futureFullPath = self._file_manager.join_path( octoprint.filemanager.FileDestinations.LOCAL, futurePath, futureFilename ) futureFullPathInStorage = self._file_manager.path_in_storage( octoprint.filemanager.FileDestinations.LOCAL, futureFullPath ) if not self._printer.can_modify_file(futureFullPathInStorage, False): return reselect = self._printer.is_current_file(futureFullPathInStorage, False) added_file = self._file_manager.add_file( octoprint.filemanager.FileDestinations.LOCAL, file_wrapper.filename, file_wrapper, allow_overwrite=True, ) if os.path.exists(path): try: os.remove(path) except: pass if reselect: self._printer.select_file( self._file_manager.path_on_disk( octoprint.filemanager.FileDestinations.LOCAL, added_file ), False, ) except: self._logger.exception( "There was an error while processing the file {} in the watched folder".format( path ) )
def _upload(self, path): try: file_wrapper = octoprint.filemanager.util.DiskFileWrapper( os.path.basename(path), path ) # determine current job currentFilename = None currentOrigin = None currentJob = self._printer.get_current_job() if currentJob is not None and "file" in currentJob.keys(): currentJobFile = currentJob["file"] if "name" in currentJobFile.keys() and "origin" in currentJobFile.keys(): currentFilename = currentJobFile["name"] currentOrigin = currentJobFile["origin"] # determine future filename of file to be uploaded, abort if it can't be uploaded try: futureFilename = self._file_manager.sanitize_name( octoprint.filemanager.FileDestinations.LOCAL, file_wrapper.filename ) except: futureFilename = None if futureFilename is None or ( len(self._file_manager.registered_slicers) == 0 and not octoprint.filemanager.valid_file_type(futureFilename) ): return # prohibit overwriting currently selected file while it's being printed if ( futureFilename == currentFilename and currentOrigin == octoprint.filemanager.FileDestinations.LOCAL and self._printer.is_printing() or self._printer.is_paused() ): return self._file_manager.add_file( octoprint.filemanager.FileDestinations.LOCAL, file_wrapper.filename, file_wrapper, allow_overwrite=True, ) if os.path.exists(path): try: os.remove(path) except: self._logger.exception( "Error while trying to clear a file from the watched folder" ) except: self._logger.exception( "There was an error while processing the file {} in the watched folder".format( path ) )
https://github.com/OctoPrint/OctoPrint/issues/1760
2017-02-07 09:49:06,404 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:11,193 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:16,081 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:49:16,900 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:17,618 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:19,717 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 09:49:27,026 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2017-02-07 09:49:29,474 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:56:03,900 - octoprint.server - INFO - Shutting down... 2017-02-07 09:56:04,894 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 09:56:04,899 - octoprint.events - INFO - Event loop shut down 2017-02-07 09:56:04,912 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:57,824 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:57,946 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:00,222 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:00,227 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,281 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,757 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,764 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:11,294 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:11,377 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:13,154 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:14,665 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:14,666 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:14,669 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:14,676 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:14,678 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:14,903 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:14,954 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:15,591 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:15,599 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:24,321 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:24,466 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,831 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,921 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:32,106 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:32,259 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:03:25,743 - octoprint.server - INFO - Shutting down... 2017-02-07 10:03:26,086 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 10:03:26,089 - octoprint.events - INFO - Event loop shut down 2017-02-07 10:03:26,095 - octoprint.server - INFO - Goodbye! 2017-01-31 20:11:03,613 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:11:03,732 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,832 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:05,837 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:10,883 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:11,442 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:11,450 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:16,925 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:17,929 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:19,821 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:21,505 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:21,506 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:21,508 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:21,516 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:21,521 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:21,747 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,798 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:22,435 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:22,443 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:23,541 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:23,667 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,071 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,887 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:30,701 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,093 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:32:19,908 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 10:54:33,623 - octoprint.util.comm - INFO - Finished in 1329.237 s. 2017-02-07 10:54:37,352 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:06:13,944 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 11:06:22,203 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 11:20:10,947 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 11:25:53,809 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 9.65ms 2017-02-07 11:25:55,882 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:25:59,988 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 128.12ms 2017-02-07 11:26:00,623 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 11.45ms 2017-02-07 11:26:03,078 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 19.80ms 2017-02-07 11:26:03,844 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.52ms 2017-02-07 11:26:06,148 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.76ms 2017-02-07 11:26:06,975 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.18ms 2017-02-07 11:26:09,231 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.34ms 2017-02-07 11:26:10,060 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.55ms 2017-02-07 11:26:12,371 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.48ms 2017-02-07 11:26:13,124 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.74ms 2017-02-07 11:26:15,460 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.92ms 2017-02-07 11:26:16,195 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.39ms 2017-02-07 11:26:18,531 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.69ms 2017-02-07 11:26:19,252 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.00ms 2017-02-07 11:26:21,635 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.67ms 2017-02-07 11:26:22,325 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.97ms 2017-02-07 11:30:06,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 11:56:46,427 - octoprint.util.comm - INFO - Finished in 1813.310 s. 2017-02-07 11:56:49,996 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 13:07:44,932 - octoprint.server - INFO - Shutting down... 2017-02-07 13:07:45,512 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 13:07:45,516 - octoprint.events - INFO - Event loop shut down 2017-02-07 13:07:45,527 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,668 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,809 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:56,075 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:56,079 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,150 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,717 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,724 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:07,228 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:07,311 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:09,093 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,729 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,730 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,734 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,744 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,746 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,996 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:11,047 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:11,683 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:11,691 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:12,354 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:12,483 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,899 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,988 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:19,549 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:12:15,985 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:12:16,763 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 14:08:42,050 - octoprint.server - INFO - Shutting down... 2017-02-07 14:08:42,269 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:08:42,274 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:08:42,287 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:59,428 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:59,587 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:02,178 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:02,183 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,246 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:07,686 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,693 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:13,279 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:13,363 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:15,156 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:16,680 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:16,681 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:16,684 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:16,691 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:16,693 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:20,403 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:20,409 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,251 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:21,260 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:21,947 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:21,978 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-01-31 20:11:22,335 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:22,428 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:28,095 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:11:28,965 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,541 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 14:18:19,309 - octoprint.server - INFO - Shutting down... 2017-02-07 14:18:19,689 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:18:19,695 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:18:19,706 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,397 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,517 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:55,623 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:55,628 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:00,676 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,105 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,112 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:06,661 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:06,744 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:08,526 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,043 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,044 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,047 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,055 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,058 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,287 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:10,338 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:10,982 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:10,990 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:11,792 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:11,899 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,239 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,329 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:18,670 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:19,337 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 14:28:41,558 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:12:44,685 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:12:45,226 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:04,086 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:21,326 - octoprint.server - INFO - Shutting down... 2017-02-07 15:13:21,469 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 15:13:21,475 - octoprint.events - INFO - Event loop shut down 2017-02-07 15:13:21,487 - octoprint.server - INFO - Goodbye! 2017-02-07 15:14:05,838 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-02-07 15:14:05,902 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:07,534 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-02-07 15:14:07,539 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:12,570 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:13,096 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:13,107 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-02-07 15:14:18,934 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-02-07 15:14:19,013 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-02-07 15:14:20,543 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-02-07 15:14:22,067 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-02-07 15:14:22,068 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-02-07 15:14:22,070 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-02-07 15:14:22,078 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-02-07 15:14:22,080 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-02-07 15:14:22,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 15:14:22,361 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-02-07 15:14:23,003 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-02-07 15:14:23,014 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-02-07 15:14:23,783 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-02-07 15:14:23,889 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-02-07 15:14:24,144 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-02-07 15:14:24,181 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498463718 (192.168.178.20) 26.96ms 2017-02-07 15:14:24,255 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-02-07 15:14:25,973 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498465861 (192.168.178.20) 11.65ms 2017-02-07 15:14:27,878 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498467716 (192.168.178.20) 11.49ms 2017-02-07 15:14:27,975 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498467918 (192.168.178.20) 37.15ms 2017-02-07 15:14:30,332 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498470129 (192.168.178.20) 12.54ms 2017-02-07 15:14:30,375 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498470130 (192.168.178.20) 36.25ms 2017-02-07 15:14:32,446 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498472130 (192.168.178.20) 119.12ms 2017-02-07 15:14:33,015 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 15:14:34,774 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498474145 (192.168.178.20) 272.46ms 2017-02-07 15:14:36,770 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:http://octopi.local:5000/:en), signaling as cached 2017-02-07 15:14:39,925 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:14:40,953 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:18:22,461 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode' 2017-02-07 15:28:11,368 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:38:11,906 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:38:12,161 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:38:30,899 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 16:00:06,207 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 16:00:06,858 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 16:00:08,914 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.16s 2017-02-07 16:06:05,465 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 16:10:27,627 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:02:58,835 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/2x3erWago_mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/2x3erWago_mount-PLA.gcode' 2017-02-07 17:15:57,956 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:15:58,893 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:16:01,718 - octoprint.util.comm - INFO - Finished in 7051.156 s. 2017-02-07 17:16:05,544 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:29:51,949 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:30:45,223 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:43:42,432 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:43:43,160 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:43:47,557 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:58:22,148 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:58:22,889 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:00:27,754 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 18:06:21,537 - octoprint.util.comm - INFO - Finished in 2180.785 s. 2017-02-07 18:06:25,501 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 18:06:34,611 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 18:06:35,234 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:55:08,678 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 19:02:02,743 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 19:33:42,721 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 19:33:42,732 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:14:59,641 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:25,944 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:15:26,706 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:27,450 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 20:29:06,476 - octoprint.util.comm - INFO - Finished in 917.133 s. 2017-02-07 20:29:10,442 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 22:25:40,308 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 22:25:49,146 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:14:55,040 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:14:55,276 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 23:14:57,274 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 23:40:37,121 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 23:40:37,128 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:40:44,540 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:42:38,491 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-08 00:27:32,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83663 G1 X120.457 Y108.997 E0.4843*90 | Recv: ok | Send: N83664 G1 X96.100 Y109.397 F5400*122 | Recv: ok | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,176 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,194 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,242 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,187 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,223 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,241 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,259 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,222 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,240 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,245 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,264 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,281 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,220 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,274 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,327 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,294 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,330 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,362 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,333 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,298 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,316 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,334 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,351 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,299 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,317 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,335 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,353 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,370 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,303 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,311 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,325 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,343 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,396 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,355 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,390 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,408 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,349 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,401 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,419 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,376 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,394 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,412 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,400 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,418 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,436 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,373 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,391 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,409 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,427 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,445 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,375 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,393 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,428 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,389 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,406 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,424 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,430 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,447 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,405 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,423 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,477 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,410 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,483 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,414 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,432 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,451 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,469 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,425 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,444 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,461 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,438 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,456 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,474 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,492 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,509 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,439 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,457 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,475 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,493 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,510 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,462 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,470 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,505 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,522 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,540 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,471 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,489 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,507 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,525 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,543 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,551 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,535 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,553 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,484 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,503 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,556 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,494 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,513 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,530 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,573 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,519 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,537 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,514 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,531 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,524 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,541 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,559 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,577 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,595 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,536 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,554 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,590 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,607 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,539 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,557 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,592 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,610 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,542 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,614 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,545 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,562 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,580 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,598 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,633 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,567 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,642 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,660 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,591 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,608 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,626 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,644 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,620 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,638 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,655 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,609 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,627 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,680 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,622 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,630 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,647 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,665 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,683 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,701 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,666 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,685 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,702 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,720 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,738 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,690 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,708 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,695 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,714 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,731 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,749 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,767 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,770 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,727 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,766 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,747 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,743 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,796 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,815 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,754 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,772 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,826 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,781 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,799 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,817 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,834 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,821 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,787 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,805 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,823 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,773 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,784 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,802 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,819 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,837 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,788 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,806 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,824 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,795 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,831 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,849 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,866 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,807 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,818 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,836 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,854 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,872 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,890 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,829 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,848 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,865 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,883 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,901 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,859 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,877 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,920 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,938 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,873 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,891 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,909 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,926 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,858 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,875 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,893 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,862 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,880 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,929 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,947 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,869 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,887 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,905 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,923 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,940 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,896 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,914 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,932 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,949 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,899 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,917 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,935 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,953 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,971 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,907 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,925 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,943 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,961 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,910 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,963 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,916 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,934 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,952 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,970 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,988 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,942 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,960 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,941 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,959 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,977 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,995 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,965 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,966 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,999 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:33,017 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,951 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,968 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,986 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,004 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,021 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,982 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,000 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,035 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,976 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,993 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,011 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,029 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,047 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:32,985 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,002 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,020 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,023 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,041 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,059 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,077 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,010 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,028 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,046 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,064 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,082 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,054 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,019 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,073 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,033 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,051 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,069 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,086 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,104 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,042 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,061 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,078 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,052 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,070 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,088 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,106 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,057 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,074 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,062 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,108 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,126 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,144 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,075 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,145 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,098 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,080 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,097 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,150 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,107 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,166 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,184 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,101 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,118 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,136 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,128 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,147 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,164 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,182 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,111 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,129 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,160 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,178 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,196 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,149 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,167 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,185 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,116 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,189 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,119 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,123 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,142 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,159 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,177 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,195 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,168 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,186 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,135 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,141 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,175 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,193 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,155 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,173 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,191 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,209 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,165 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,183 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,236 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,180 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,198 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,216 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,192 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,228 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,213 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,231 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,249 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,284 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,282 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,300 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,248 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,256 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,336 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,275 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,304 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,296 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,314 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,322 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,340 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,293 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,354 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,382 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,345 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,363 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,380 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,398 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,331 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,368 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,385 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,403 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:01:33,346 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671
OSError
def on_created(self, event): thread = threading.Thread(target=self._repeatedly_check, args=(event.src_path,)) thread.daemon = True thread.start()
def on_created(self, event): self._upload(event.src_path)
https://github.com/OctoPrint/OctoPrint/issues/1760
2017-02-07 09:49:06,404 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:11,193 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:16,081 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:49:16,900 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:17,618 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:19,717 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 09:49:27,026 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2017-02-07 09:49:29,474 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:56:03,900 - octoprint.server - INFO - Shutting down... 2017-02-07 09:56:04,894 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 09:56:04,899 - octoprint.events - INFO - Event loop shut down 2017-02-07 09:56:04,912 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:57,824 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:57,946 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:00,222 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:00,227 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,281 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,757 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,764 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:11,294 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:11,377 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:13,154 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:14,665 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:14,666 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:14,669 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:14,676 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:14,678 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:14,903 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:14,954 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:15,591 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:15,599 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:24,321 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:24,466 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,831 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,921 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:32,106 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:32,259 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:03:25,743 - octoprint.server - INFO - Shutting down... 2017-02-07 10:03:26,086 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 10:03:26,089 - octoprint.events - INFO - Event loop shut down 2017-02-07 10:03:26,095 - octoprint.server - INFO - Goodbye! 2017-01-31 20:11:03,613 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:11:03,732 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,832 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:05,837 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:10,883 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:11,442 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:11,450 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:16,925 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:17,929 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:19,821 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:21,505 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:21,506 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:21,508 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:21,516 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:21,521 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:21,747 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,798 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:22,435 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:22,443 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:23,541 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:23,667 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,071 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,887 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:30,701 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,093 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:32:19,908 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 10:54:33,623 - octoprint.util.comm - INFO - Finished in 1329.237 s. 2017-02-07 10:54:37,352 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:06:13,944 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 11:06:22,203 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 11:20:10,947 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 11:25:53,809 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 9.65ms 2017-02-07 11:25:55,882 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:25:59,988 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 128.12ms 2017-02-07 11:26:00,623 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 11.45ms 2017-02-07 11:26:03,078 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 19.80ms 2017-02-07 11:26:03,844 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.52ms 2017-02-07 11:26:06,148 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.76ms 2017-02-07 11:26:06,975 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.18ms 2017-02-07 11:26:09,231 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.34ms 2017-02-07 11:26:10,060 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.55ms 2017-02-07 11:26:12,371 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.48ms 2017-02-07 11:26:13,124 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.74ms 2017-02-07 11:26:15,460 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.92ms 2017-02-07 11:26:16,195 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.39ms 2017-02-07 11:26:18,531 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.69ms 2017-02-07 11:26:19,252 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.00ms 2017-02-07 11:26:21,635 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.67ms 2017-02-07 11:26:22,325 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.97ms 2017-02-07 11:30:06,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 11:56:46,427 - octoprint.util.comm - INFO - Finished in 1813.310 s. 2017-02-07 11:56:49,996 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 13:07:44,932 - octoprint.server - INFO - Shutting down... 2017-02-07 13:07:45,512 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 13:07:45,516 - octoprint.events - INFO - Event loop shut down 2017-02-07 13:07:45,527 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,668 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,809 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:56,075 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:56,079 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,150 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,717 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,724 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:07,228 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:07,311 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:09,093 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,729 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,730 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,734 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,744 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,746 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,996 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:11,047 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:11,683 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:11,691 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:12,354 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:12,483 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,899 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,988 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:19,549 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:12:15,985 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:12:16,763 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 14:08:42,050 - octoprint.server - INFO - Shutting down... 2017-02-07 14:08:42,269 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:08:42,274 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:08:42,287 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:59,428 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:59,587 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:02,178 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:02,183 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,246 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:07,686 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,693 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:13,279 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:13,363 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:15,156 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:16,680 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:16,681 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:16,684 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:16,691 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:16,693 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:20,403 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:20,409 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,251 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:21,260 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:21,947 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:21,978 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-01-31 20:11:22,335 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:22,428 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:28,095 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:11:28,965 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,541 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 14:18:19,309 - octoprint.server - INFO - Shutting down... 2017-02-07 14:18:19,689 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:18:19,695 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:18:19,706 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,397 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,517 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:55,623 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:55,628 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:00,676 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,105 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,112 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:06,661 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:06,744 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:08,526 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,043 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,044 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,047 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,055 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,058 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,287 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:10,338 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:10,982 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:10,990 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:11,792 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:11,899 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,239 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,329 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:18,670 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:19,337 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 14:28:41,558 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:12:44,685 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:12:45,226 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:04,086 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:21,326 - octoprint.server - INFO - Shutting down... 2017-02-07 15:13:21,469 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 15:13:21,475 - octoprint.events - INFO - Event loop shut down 2017-02-07 15:13:21,487 - octoprint.server - INFO - Goodbye! 2017-02-07 15:14:05,838 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-02-07 15:14:05,902 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:07,534 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-02-07 15:14:07,539 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:12,570 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:13,096 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:13,107 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-02-07 15:14:18,934 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-02-07 15:14:19,013 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-02-07 15:14:20,543 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-02-07 15:14:22,067 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-02-07 15:14:22,068 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-02-07 15:14:22,070 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-02-07 15:14:22,078 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-02-07 15:14:22,080 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-02-07 15:14:22,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 15:14:22,361 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-02-07 15:14:23,003 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-02-07 15:14:23,014 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-02-07 15:14:23,783 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-02-07 15:14:23,889 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-02-07 15:14:24,144 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-02-07 15:14:24,181 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498463718 (192.168.178.20) 26.96ms 2017-02-07 15:14:24,255 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-02-07 15:14:25,973 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498465861 (192.168.178.20) 11.65ms 2017-02-07 15:14:27,878 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498467716 (192.168.178.20) 11.49ms 2017-02-07 15:14:27,975 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498467918 (192.168.178.20) 37.15ms 2017-02-07 15:14:30,332 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498470129 (192.168.178.20) 12.54ms 2017-02-07 15:14:30,375 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498470130 (192.168.178.20) 36.25ms 2017-02-07 15:14:32,446 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498472130 (192.168.178.20) 119.12ms 2017-02-07 15:14:33,015 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 15:14:34,774 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498474145 (192.168.178.20) 272.46ms 2017-02-07 15:14:36,770 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:http://octopi.local:5000/:en), signaling as cached 2017-02-07 15:14:39,925 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:14:40,953 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:18:22,461 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode' 2017-02-07 15:28:11,368 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:38:11,906 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:38:12,161 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:38:30,899 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 16:00:06,207 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 16:00:06,858 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 16:00:08,914 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.16s 2017-02-07 16:06:05,465 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 16:10:27,627 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:02:58,835 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/2x3erWago_mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/2x3erWago_mount-PLA.gcode' 2017-02-07 17:15:57,956 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:15:58,893 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:16:01,718 - octoprint.util.comm - INFO - Finished in 7051.156 s. 2017-02-07 17:16:05,544 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:29:51,949 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:30:45,223 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:43:42,432 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:43:43,160 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:43:47,557 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:58:22,148 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:58:22,889 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:00:27,754 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 18:06:21,537 - octoprint.util.comm - INFO - Finished in 2180.785 s. 2017-02-07 18:06:25,501 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 18:06:34,611 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 18:06:35,234 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:55:08,678 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 19:02:02,743 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 19:33:42,721 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 19:33:42,732 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:14:59,641 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:25,944 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:15:26,706 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:27,450 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 20:29:06,476 - octoprint.util.comm - INFO - Finished in 917.133 s. 2017-02-07 20:29:10,442 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 22:25:40,308 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 22:25:49,146 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:14:55,040 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:14:55,276 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 23:14:57,274 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 23:40:37,121 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 23:40:37,128 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:40:44,540 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:42:38,491 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-08 00:27:32,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83663 G1 X120.457 Y108.997 E0.4843*90 | Recv: ok | Send: N83664 G1 X96.100 Y109.397 F5400*122 | Recv: ok | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,176 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,194 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,242 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,187 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,223 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,241 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,259 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,222 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,240 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,245 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,264 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,281 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,220 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,274 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,327 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,294 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,330 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,362 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,333 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,298 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,316 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,334 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,351 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,299 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,317 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,335 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,353 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,370 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,303 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,311 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,325 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,343 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,396 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,355 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,390 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,408 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,349 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,401 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,419 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,376 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,394 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,412 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,400 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,418 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,436 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,373 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,391 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,409 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,427 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,445 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,375 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,393 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,428 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,389 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,406 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,424 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,430 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,447 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,405 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,423 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,477 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,410 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,483 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,414 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,432 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,451 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,469 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,425 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,444 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,461 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,438 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,456 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,474 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,492 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,509 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,439 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,457 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,475 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,493 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,510 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,462 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,470 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,505 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,522 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,540 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,471 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,489 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,507 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,525 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,543 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,551 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,535 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,553 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,484 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,503 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,556 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,494 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,513 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,530 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,573 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,519 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,537 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,514 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,531 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,524 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,541 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,559 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,577 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,595 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,536 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,554 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,590 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,607 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,539 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,557 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,592 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,610 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,542 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,614 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,545 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,562 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,580 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,598 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,633 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,567 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,642 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,660 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,591 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,608 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,626 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,644 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,620 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,638 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,655 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,609 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,627 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,680 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,622 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,630 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,647 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,665 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,683 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,701 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,666 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,685 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,702 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,720 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,738 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,690 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,708 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,695 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,714 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,731 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,749 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,767 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,770 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,727 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,766 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,747 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,743 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,796 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,815 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,754 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,772 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,826 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,781 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,799 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,817 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,834 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,821 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,787 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,805 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,823 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,773 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,784 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,802 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,819 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,837 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,788 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,806 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,824 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,795 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,831 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,849 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,866 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,807 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,818 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,836 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,854 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,872 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,890 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,829 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,848 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,865 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,883 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,901 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,859 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,877 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,920 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,938 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,873 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,891 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,909 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,926 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,858 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,875 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,893 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,862 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,880 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,929 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,947 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,869 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,887 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,905 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,923 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,940 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,896 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,914 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,932 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,949 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,899 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,917 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,935 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,953 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,971 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,907 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,925 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,943 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,961 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,910 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,963 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,916 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,934 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,952 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,970 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,988 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,942 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,960 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,941 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,959 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,977 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,995 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,965 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,966 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,999 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:33,017 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,951 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,968 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,986 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,004 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,021 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,982 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,000 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,035 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,976 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,993 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,011 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,029 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,047 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:32,985 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,002 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,020 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,023 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,041 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,059 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,077 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,010 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,028 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,046 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,064 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,082 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,054 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,019 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,073 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,033 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,051 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,069 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,086 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,104 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,042 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,061 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,078 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,052 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,070 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,088 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,106 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,057 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,074 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,062 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,108 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,126 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,144 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,075 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,145 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,098 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,080 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,097 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,150 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,107 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,166 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,184 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,101 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,118 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,136 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,128 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,147 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,164 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,182 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,111 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,129 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,160 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,178 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,196 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,149 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,167 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,185 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,116 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,189 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,119 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,123 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,142 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,159 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,177 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,195 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,168 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,186 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,135 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,141 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,175 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,193 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,155 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,173 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,191 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,209 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,165 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,183 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,236 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,180 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,198 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,216 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,192 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,228 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,213 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,231 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,249 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,284 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,282 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,300 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,248 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,256 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,336 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,275 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,304 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,296 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,314 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,322 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,340 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,293 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,354 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,382 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,345 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,363 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,380 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,398 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,331 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,368 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,385 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,403 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:01:33,346 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671
OSError
def _repeatedly_check(self, path, interval=1, stable=5): last_size = os.stat(path).st_size countdown = stable while True: new_size = os.stat(path).st_size if new_size == last_size: self._logger.debug( "File at {} is no longer growing, counting down: {}".format( path, countdown ) ) countdown -= 1 if countdown <= 0: break else: self._logger.debug( "File at {} is still growing (last: {}, new: {}), waiting...".format( path, last_size, new_size ) ) countdown = stable last_size = new_size time.sleep(interval) self._logger.debug("File at {} is stable, moving it".format(path)) self._upload(path)
def _repeatedly_check(self, path, interval=1, stable=5): last_size = os.stat(path).st_size countdown = stable while True: new_size = os.stat(path).st_size if new_size == last_size: self._logger.debug( "File at {} is no longer growing, counting down: {}".format( path, countdown ) ) countdown -= 1 if countdown <= 0: break else: self._logger.debug("File at {} is still growing, waiting...".format(path)) countdown = stable time.sleep(interval) self._logger.debug("File at {} is stable, moving it".format(path)) self._upload(path)
https://github.com/OctoPrint/OctoPrint/issues/1760
2017-02-07 09:49:06,404 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:11,193 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:16,081 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:49:16,900 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 09:49:17,618 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 09:49:19,717 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 09:49:27,026 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2017-02-07 09:49:29,474 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 09:56:03,900 - octoprint.server - INFO - Shutting down... 2017-02-07 09:56:04,894 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 09:56:04,899 - octoprint.events - INFO - Event loop shut down 2017-02-07 09:56:04,912 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:57,824 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:57,946 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:00,222 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:00,227 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,281 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,757 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:05,764 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:11,294 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:11,377 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:13,154 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:14,665 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:14,666 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:14,669 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:14,676 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:14,678 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:14,903 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:14,954 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:15,591 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:15,599 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:24,321 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:24,466 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,831 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,921 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:32,106 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:32,259 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:03:25,743 - octoprint.server - INFO - Shutting down... 2017-02-07 10:03:26,086 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 10:03:26,089 - octoprint.events - INFO - Event loop shut down 2017-02-07 10:03:26,095 - octoprint.server - INFO - Goodbye! 2017-01-31 20:11:03,613 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:11:03,732 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:05,832 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:05,837 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:10,883 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:11,442 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:11,450 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:16,925 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:17,929 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:19,821 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:21,505 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:21,506 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:21,508 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:21,516 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:21,521 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:21,747 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,798 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:22,435 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:22,443 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:23,541 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:23,667 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:24,071 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:24,887 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:30,701 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,093 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 10:32:19,908 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 10:54:33,623 - octoprint.util.comm - INFO - Finished in 1329.237 s. 2017-02-07 10:54:37,352 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:06:13,944 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.22 2017-02-07 11:06:22,203 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.22 2017-02-07 11:20:10,947 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 11:25:53,809 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 9.65ms 2017-02-07 11:25:55,882 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 11:25:59,988 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 128.12ms 2017-02-07 11:26:00,623 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 11.45ms 2017-02-07 11:26:03,078 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 19.80ms 2017-02-07 11:26:03,844 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.52ms 2017-02-07 11:26:06,148 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.76ms 2017-02-07 11:26:06,975 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.18ms 2017-02-07 11:26:09,231 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.34ms 2017-02-07 11:26:10,060 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.55ms 2017-02-07 11:26:12,371 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.48ms 2017-02-07 11:26:13,124 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.74ms 2017-02-07 11:26:15,460 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.92ms 2017-02-07 11:26:16,195 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.39ms 2017-02-07 11:26:18,531 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.69ms 2017-02-07 11:26:19,252 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 21.00ms 2017-02-07 11:26:21,635 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 20.67ms 2017-02-07 11:26:22,325 - tornado.access - WARNING - 404 GET /webcam/?action=stream (192.168.178.22) 22.97ms 2017-02-07 11:30:06,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 11:56:46,427 - octoprint.util.comm - INFO - Finished in 1813.310 s. 2017-02-07 11:56:49,996 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 13:07:44,932 - octoprint.server - INFO - Shutting down... 2017-02-07 13:07:45,512 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 13:07:45,516 - octoprint.events - INFO - Event loop shut down 2017-02-07 13:07:45,527 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,668 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,809 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:56,075 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:56,079 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,150 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,717 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,724 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:07,228 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:07,311 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:09,093 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,729 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,730 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,734 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,744 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,746 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,996 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:11,047 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:11,683 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:11,691 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:12,354 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:12,483 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,899 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,988 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:19,549 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:12:15,985 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:12:16,763 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 14:08:42,050 - octoprint.server - INFO - Shutting down... 2017-02-07 14:08:42,269 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:08:42,274 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:08:42,287 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:59,428 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:59,587 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:02,178 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:11:02,183 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,246 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:07,686 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:07,693 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:13,279 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:13,363 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:15,156 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:16,680 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:16,681 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:16,684 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:16,691 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:16,693 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:20,403 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:20,409 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:21,251 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:21,260 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:21,947 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:21,978 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2017-01-31 20:11:22,335 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:22,428 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:28,095 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-01-31 20:11:28,965 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:34,541 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 14:18:19,309 - octoprint.server - INFO - Shutting down... 2017-02-07 14:18:19,689 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 14:18:19,695 - octoprint.events - INFO - Event loop shut down 2017-02-07 14:18:19,706 - octoprint.server - INFO - Goodbye! 2017-01-31 20:10:53,397 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-01-31 20:10:53,517 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:10:55,623 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-01-31 20:10:55,628 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:00,676 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-01-31 20:11:01,105 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-01-31 20:11:01,112 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-01-31 20:11:06,661 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-01-31 20:11:06,744 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-01-31 20:11:08,526 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-01-31 20:11:10,043 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-01-31 20:11:10,044 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-01-31 20:11:10,047 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-01-31 20:11:10,055 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-01-31 20:11:10,058 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-01-31 20:11:10,287 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-01-31 20:11:10,338 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-01-31 20:11:10,982 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-01-31 20:11:10,990 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-01-31 20:11:11,792 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-01-31 20:11:11,899 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-01-31 20:11:12,239 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-01-31 20:11:12,329 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-01-31 20:11:18,670 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-01-31 20:11:19,337 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 14:28:41,558 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:12:44,685 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:12:45,226 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:04,086 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:13:21,326 - octoprint.server - INFO - Shutting down... 2017-02-07 15:13:21,469 - octoprint.events - INFO - Processing shutdown event, this will be our last event 2017-02-07 15:13:21,475 - octoprint.events - INFO - Event loop shut down 2017-02-07 15:13:21,487 - octoprint.server - INFO - Goodbye! 2017-02-07 15:14:05,838 - octoprint.server - INFO - Starting OctoPrint 1.3.1 (master branch) 2017-02-07 15:14:05,902 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:07,534 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2017-02-07 15:14:07,539 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:12,570 - octoprint.plugin.core - INFO - Loading plugins from /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins, /var/lib/octoprint/.octoprint/plugins and installed plugin packages... 2017-02-07 15:14:13,096 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 9 mixin implementations, 6 hook handlers 2017-02-07 15:14:13,107 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /var/lib/octoprint/.octoprint/uploads... 2017-02-07 15:14:18,934 - octoprint.filemanager.storage - INFO - ... file metadata for /var/lib/octoprint/.octoprint/uploads initialized successfully. 2017-02-07 15:14:19,013 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2017-02-07 15:14:20,543 - octoprint.util.pip - INFO - Using "/usr/share/octoprint/venv/bin/python -m pip" as command to invoke pip 2017-02-07 15:14:22,067 - octoprint.util.pip - INFO - Version of pip is 8.1.2 2017-02-07 15:14:22,068 - octoprint.util.pip - INFO - pip installs to /usr/share/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2017-02-07 15:14:22,070 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s) 2017-02-07 15:14:22,078 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Announcement Plugin (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/announcements | Core Wizard (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/corewizard | CuraEngine (<= 15.04) (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.2) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_displayprogress | EEPROM Marlin Editor Plugin (0.1.0) = /usr/share/octoprint/venv/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/plugins/virtual_printer 2017-02-07 15:14:22,080 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2017-02-07 15:14:22,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 15:14:22,361 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/webassets... 2017-02-07 15:14:23,003 - octoprint.filemanager - INFO - Added 5 items from storage type "local" to analysis queue 2017-02-07 15:14:23,014 - octoprint.server - INFO - Reset webasset folder /var/lib/octoprint/.octoprint/generated/.webassets-cache... 2017-02-07 15:14:23,783 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2017-02-07 15:14:23,889 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2017-02-07 15:14:24,144 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2017-02-07 15:14:24,181 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498463718 (192.168.178.20) 26.96ms 2017-02-07 15:14:24,255 - octoprint.server - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local:5000/'} 2017-02-07 15:14:25,973 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498465861 (192.168.178.20) 11.65ms 2017-02-07 15:14:27,878 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498467716 (192.168.178.20) 11.49ms 2017-02-07 15:14:27,975 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498467918 (192.168.178.20) 37.15ms 2017-02-07 15:14:30,332 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1486498470129 (192.168.178.20) 12.54ms 2017-02-07 15:14:30,375 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498470130 (192.168.178.20) 36.25ms 2017-02-07 15:14:32,446 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498472130 (192.168.178.20) 119.12ms 2017-02-07 15:14:33,015 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.0-RCBugFix (Github)" 2017-02-07 15:14:34,774 - tornado.access - WARNING - 404 GET /cached.gif?_=1486498474145 (192.168.178.20) 272.46ms 2017-02-07 15:14:36,770 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:http://octopi.local:5000/:en), signaling as cached 2017-02-07 15:14:39,925 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:14:40,953 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:18:22,461 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/RaspberryPI3_NoFan_VESA_Bottom-PLA.gcode' 2017-02-07 15:28:11,368 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 15:38:11,906 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 15:38:12,161 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 15:38:30,899 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 16:00:06,207 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 16:00:06,858 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 16:00:08,914 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.16s 2017-02-07 16:06:05,465 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 16:10:27,627 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:02:58,835 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/2x3erWago_mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/2x3erWago_mount-PLA.gcode' 2017-02-07 17:15:57,956 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:15:58,893 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:16:01,718 - octoprint.util.comm - INFO - Finished in 7051.156 s. 2017-02-07 17:16:05,544 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:29:51,949 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 17:30:45,223 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:43:42,432 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:43:43,160 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 17:43:47,557 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 17:58:22,148 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 17:58:22,889 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:00:27,754 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 18:06:21,537 - octoprint.util.comm - INFO - Finished in 2180.785 s. 2017-02-07 18:06:25,501 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 18:06:34,611 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 18:06:35,234 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 18:55:08,678 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 19:02:02,743 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 19:33:42,721 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 19:33:42,732 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:14:59,641 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:25,944 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 20:15:26,706 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 20:15:27,450 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 20:29:06,476 - octoprint.util.comm - INFO - Finished in 917.133 s. 2017-02-07 20:29:10,442 - octoprint.filemanager.analysis - INFO - Starting analysis of local:TeaLight-PLA.gcode 2017-02-07 22:25:40,308 - octoprint.server.util.watchdog - ERROR - There was an error while processing the file /var/lib/octoprint/.octoprint/watched/Dupont_Mount-PLA.gcode in the watched folder Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/server/util/watchdog.py", line 60, in _upload allow_overwrite=True) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/__init__.py", line 399, in add_file file_path = self._storage(destination).add_file(path, file_object, links=links, printer_profile=printer_profile, allow_overwrite=allow_overwrite) File "/usr/share/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.1-py2.7.egg/octoprint/filemanager/storage.py", line 659, in add_file os.utime(file_path, None) OSError: [Errno 13] Permission denied: '/var/lib/octoprint/.octoprint/uploads/Dupont_Mount-PLA.gcode' 2017-02-07 22:25:49,146 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:14:55,040 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:14:55,276 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to '/usr/bin/CuraEngine'), Cura will not be selectable for slicing 2017-02-07 23:14:57,274 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.2s 2017-02-07 23:40:37,121 - tornado.general - WARNING - error on read Traceback (most recent call last): File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 601, in _handle_read pos = self._read_to_buffer_loop() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 571, in _read_to_buffer_loop if self._read_to_buffer() == 0: File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 683, in _read_to_buffer chunk = self.read_from_fd() File "/usr/share/octoprint/venv/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/iostream.py", line 947, in read_from_fd chunk = self.socket.recv(self.read_chunk_size) error: [Errno 113] No route to host 2017-02-07 23:40:37,128 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-07 23:40:44,540 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.178.20 2017-02-07 23:42:38,491 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.178.20 2017-02-08 00:27:32,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83663 G1 X120.457 Y108.997 E0.4843*90 | Recv: ok | Send: N83664 G1 X96.100 Y109.397 F5400*122 | Recv: ok | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,176 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Send: N83665 G92 E0*73 | Recv: X:96.10 Y:109.40 Z:21.30 E:0.00 Count X: 9451 Y:7289 Z:8564 | Recv: ok | Send: N83666 G1 X96.100 Y102.297 E0.1855 F1949*4 | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,194 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83667 G1 X123.825 Y102.297 E0.9098*86 | Recv: ok | Send: N83668 G1 X123.825 Y109.397 E1.0953*85 | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83669 G1 X96.100 Y109.397 E1.8197*109 | Recv: ok | Send: N83670 G1 X100.056 Y108.394 F5400*65 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:27:32,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:28:32,242 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:29:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,187 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,223 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,241 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:30:32,259 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:31:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,222 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,240 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:32:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,245 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,264 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:33:32,281 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,220 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:34:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,232 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,250 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,268 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:35:32,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:36:32,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:37:32,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,274 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:38:32,327 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,258 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,276 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,294 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:39:32,330 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:40:32,362 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,333 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:41:32,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,298 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,316 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,334 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:42:32,351 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,299 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,317 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,335 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,353 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:43:32,370 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,303 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:44:32,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,311 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:45:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,325 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,343 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:46:32,396 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,355 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,390 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:47:32,408 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,349 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,401 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:48:32,419 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,376 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,394 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,412 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:49:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,366 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,383 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,400 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,418 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:50:32,436 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,373 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,391 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,409 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,427 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:51:32,445 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,375 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,393 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,428 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:52:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,389 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,406 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,424 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:53:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,411 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,430 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,447 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:54:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,405 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,423 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,441 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,459 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:55:32,477 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,410 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,429 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:56:32,483 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,414 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,432 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,451 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,469 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:57:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,425 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,444 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,461 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:58:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,438 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,456 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,474 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,492 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 00:59:32,509 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,439 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,457 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,475 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,493 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:00:32,510 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,446 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,465 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:01:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,462 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:02:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,470 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,486 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,505 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,522 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:03:32,540 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,471 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,489 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,507 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,525 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:04:32,543 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,479 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,497 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,515 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,533 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:05:32,551 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,482 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,500 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,517 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,535 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:06:32,553 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,484 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,503 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:07:32,556 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,494 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,513 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,530 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:08:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,520 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,538 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:09:32,573 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,502 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,519 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,537 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,555 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:10:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,514 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,531 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,548 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,566 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:11:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,524 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,541 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,559 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,577 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:12:32,595 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,536 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,554 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,572 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,590 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:13:32,607 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,539 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,557 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,592 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:14:32,610 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,542 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:15:32,614 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,545 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,562 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,580 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,598 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:16:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,560 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,578 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,596 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,615 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:17:32,633 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,567 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,642 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:18:32,660 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,574 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,591 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,608 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,626 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:19:32,644 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,584 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,602 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,620 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,638 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:20:32,655 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,609 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,627 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:21:32,680 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,622 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:22:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,630 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,647 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,665 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,683 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:23:32,701 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,640 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:24:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,645 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,663 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,698 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:25:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,658 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,676 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,694 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:26:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,666 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,685 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,702 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,720 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:27:32,738 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,681 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:28:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,690 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,708 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:29:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,695 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,714 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,731 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,749 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:30:32,767 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,699 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,716 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,734 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,752 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:31:32,770 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,712 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:32:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,726 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:33:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,727 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:34:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,729 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,748 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,766 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:35:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,730 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,747 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,765 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,783 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:36:32,801 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,743 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,761 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,779 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,796 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:37:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,744 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,762 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,780 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,797 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:38:32,815 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,754 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,772 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:39:32,826 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:40:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,763 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,781 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,799 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,817 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:41:32,834 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,821 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:42:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,768 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:43:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,787 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,805 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,823 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:44:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,769 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,786 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,804 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,822 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:45:32,839 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,773 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,790 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,808 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:46:32,843 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,784 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,802 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,819 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,837 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:47:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,788 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,806 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,824 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:48:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,795 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,814 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,831 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,849 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:49:32,866 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,807 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,825 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,842 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,860 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:50:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,818 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,836 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,854 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,872 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:51:32,890 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,829 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,848 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,865 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,883 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:52:32,901 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,841 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,859 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,877 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,920 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:53:32,938 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,855 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,873 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,891 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,909 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:54:32,926 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,858 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,875 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,893 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:55:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,862 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,880 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,911 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,929 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:56:32,947 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,869 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,887 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,905 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,923 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:57:32,940 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,878 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,896 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,914 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,932 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:58:32,949 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,899 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,917 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,935 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,953 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 01:59:32,971 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,907 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,925 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,943 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,961 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:00:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,910 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,928 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,963 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:01:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,916 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,934 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,952 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,970 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:02:32,988 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,942 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,960 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,978 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:03:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,924 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,941 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,959 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,977 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:04:32,995 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,965 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:05:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,930 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,948 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,966 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:32,983 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:06:33,001 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,945 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,981 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:32,999 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:07:33,017 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,951 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,968 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:32,986 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,004 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:08:33,021 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,964 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:32,982 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,000 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:09:33,035 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,976 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:32,993 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,011 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,029 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:10:33,047 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:32,985 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,002 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,020 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:11:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:32,996 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,023 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,041 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,059 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:12:33,077 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,010 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,028 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,046 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,064 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:13:33,082 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,018 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,054 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:14:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,019 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,037 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,055 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,073 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:15:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,033 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,051 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,069 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,086 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:16:33,104 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,042 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,061 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,078 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:17:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,052 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,070 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,088 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,106 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:18:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,057 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,074 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:19:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,062 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,096 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:20:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,072 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,108 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,126 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:21:33,144 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,075 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,092 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,127 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:22:33,145 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,079 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,098 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:23:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,080 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,097 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,115 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,133 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:24:33,150 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,090 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,107 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,125 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,166 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:25:33,184 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,101 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,118 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,136 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:26:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,109 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,128 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,147 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,164 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:27:33,182 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,111 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,129 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,160 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,178 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:28:33,196 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,114 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,149 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,167 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:29:33,185 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,116 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:30:33,189 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,119 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:31:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,123 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,142 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,159 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,177 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:32:33,195 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,132 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,151 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,168 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,186 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:33:33,204 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,134 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,152 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,170 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:34:33,205 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,135 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,153 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,171 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,188 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:35:33,206 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,141 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,158 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,175 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,193 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:36:33,211 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,155 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,173 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,191 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,209 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:37:33,227 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,165 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,183 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:38:33,236 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,179 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,197 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,215 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:39:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,180 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,198 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,216 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,233 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:40:33,251 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,192 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,210 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,228 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:41:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,201 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,254 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:42:33,272 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,213 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,231 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,249 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,266 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:43:33,284 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,219 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,237 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,255 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:44:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,224 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:45:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,229 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,247 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,282 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:46:33,300 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,243 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,262 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,280 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,297 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:47:33,315 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,248 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:48:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,256 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,273 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,291 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,308 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:49:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,265 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,283 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:50:33,336 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,275 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,290 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,304 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,318 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:51:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,279 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,296 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,314 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,332 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:52:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,286 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,305 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,322 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,340 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:53:33,358 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,293 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,312 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,329 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:54:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,319 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,337 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,354 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:55:33,372 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,307 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,326 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,344 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,361 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:56:33,379 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,309 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,347 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,365 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:57:33,382 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,321 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,338 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,356 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,374 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:58:33,392 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,328 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,345 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,363 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,380 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 02:59:33,398 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,331 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,350 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,368 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,385 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:00:33,403 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 2017-02-08 03:01:33,346 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 83671, current line = 83672 | Last lines in terminal: | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671 | Recv: ok | Send: N83671 M117 [##########################################################################] 740%*63 | Recv: Error:checksum mismatch, Last Line: 83670 | Recv: Resend: 83671
OSError
def init_logging( settings, use_logging_file=True, logging_file=None, default_config=None, debug=False, verbosity=0, uncaught_logger=None, uncaught_handler=None, ): """Sets up logging.""" import os from octoprint.util import dict_merge # default logging configuration if default_config is None: default_config = { "version": 1, "formatters": { "simple": { "format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s" }, "serial": {"format": "%(asctime)s - %(message)s"}, }, "handlers": { "console": { "class": "logging.StreamHandler", "level": "DEBUG", "formatter": "simple", "stream": "ext://sys.stdout", }, "file": { "class": "octoprint.logging.handlers.CleaningTimedRotatingFileHandler", "level": "DEBUG", "formatter": "simple", "when": "D", "backupCount": 6, "filename": os.path.join( settings.getBaseFolder("logs"), "octoprint.log" ), }, "serialFile": { "class": "octoprint.logging.handlers.SerialLogHandler", "level": "DEBUG", "formatter": "serial", "backupCount": 3, "filename": os.path.join( settings.getBaseFolder("logs"), "serial.log" ), }, }, "loggers": { "SERIAL": { "level": "CRITICAL", "handlers": ["serialFile"], "propagate": False, }, "octoprint": {"level": "INFO"}, "octoprint.util": {"level": "INFO"}, "octoprint.plugins": {"level": "INFO"}, }, "root": {"level": "WARN", "handlers": ["console", "file"]}, } if debug or verbosity > 0: default_config["loggers"]["octoprint"]["level"] = "DEBUG" default_config["root"]["level"] = "INFO" if verbosity > 1: default_config["loggers"]["octoprint.plugins"]["level"] = "DEBUG" if verbosity > 2: default_config["root"]["level"] = "DEBUG" config = default_config if use_logging_file: # further logging configuration from file... if logging_file is None: logging_file = os.path.join(settings.getBaseFolder("base"), "logging.yaml") config_from_file = {} if os.path.exists(logging_file) and os.path.isfile(logging_file): import yaml with open(logging_file, "r") as f: config_from_file = yaml.safe_load(f) # we merge that with the default config if config_from_file is not None and isinstance(config_from_file, dict): config = dict_merge(default_config, config_from_file) # configure logging globally return set_logging_config( config, debug, verbosity, uncaught_logger, uncaught_handler )
def init_logging( settings, use_logging_file=True, logging_file=None, default_config=None, debug=False, verbosity=0, uncaught_logger=None, uncaught_handler=None, ): """Sets up logging.""" import os from octoprint.util import dict_merge # default logging configuration if default_config is None: default_config = { "version": 1, "formatters": { "simple": { "format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s" }, "serial": {"format": "%(asctime)s - %(message)s"}, }, "handlers": { "console": { "class": "logging.StreamHandler", "level": "DEBUG", "formatter": "simple", "stream": "ext://sys.stdout", }, "file": { "class": "octoprint.logging.handlers.CleaningTimedRotatingFileHandler", "level": "DEBUG", "formatter": "simple", "when": "D", "backupCount": 6, "filename": os.path.join( settings.getBaseFolder("logs"), "octoprint.log" ), }, "serialFile": { "class": "octoprint.logging.handlers.SerialLogHandler", "level": "DEBUG", "formatter": "serial", "backupCount": 3, "filename": os.path.join( settings.getBaseFolder("logs"), "serial.log" ), }, }, "loggers": { "SERIAL": { "level": "CRITICAL", "handlers": ["serialFile"], "propagate": False, }, "octoprint": {"level": "INFO"}, "octoprint.util": {"level": "INFO"}, "octoprint.plugins": {"level": "INFO"}, }, "root": {"level": "WARN", "handlers": ["console", "file"]}, } if debug or verbosity > 0: default_config["loggers"]["octoprint"]["level"] = "DEBUG" default_config["root"]["level"] = "INFO" if verbosity > 1: default_config["loggers"]["octoprint.plugins"]["level"] = "DEBUG" if verbosity > 2: default_config["root"]["level"] = "DEBUG" if use_logging_file: # further logging configuration from file... if logging_file is None: logging_file = os.path.join(settings.getBaseFolder("base"), "logging.yaml") config_from_file = {} if os.path.exists(logging_file) and os.path.isfile(logging_file): import yaml with open(logging_file, "r") as f: config_from_file = yaml.safe_load(f) # we merge that with the default config config = dict_merge(default_config, config_from_file) else: config = default_config # configure logging globally return set_logging_config( config, debug, verbosity, uncaught_logger, uncaught_handler )
https://github.com/OctoPrint/OctoPrint/issues/1560
Traceback (most recent call last): File "/home/pi/oprint/bin/octoprint", line 9, in <module> load_entry_point('OctoPrint==1.2.16', 'console_scripts', 'octoprint')() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/__init__.py", line 94, in main octoprint.run() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/__init__.py", line 177, in run self._setup_logging(self._debug, self._logConf) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/__init__.py", line 627, in _setup_logging logging.config.dictConfig(config) File "/usr/lib/python2.7/logging/config.py", line 794, in dictConfig dictConfigClass(config).configure() File "/usr/lib/python2.7/logging/config.py", line 371, in __init__ self.config = ConvertingDict(config) TypeError: 'NoneType' object is not iterable
TypeError
def __call__(self, environ): def retrieve_header(header_type): candidates = getattr(self, "_headers_" + header_type, []) fallback = getattr(self, "_fallback_" + header_type, None) for candidate in candidates: value = environ.get(candidate, None) if value is not None: return value else: return fallback def host_to_server_and_port(host, scheme): if host is None: return None, None default_port = "443" if scheme == "https" else "80" host = host.strip() if ":" in host: # we might have an ipv6 address here, or a port, or both if host[0] == "[": # that looks like an ipv6 address with port, e.g. [fec1::1]:80 address_end = host.find("]") if address_end == -1: # no ], that looks like a seriously broken address return None, None # extract server ip, skip enclosing [ and ] server = host[1:address_end] tail = host[address_end + 1 :] # now check if there's also a port if len(tail) and tail[0] == ":": # port included as well port = tail[1:] else: # no port, use default one port = default_port elif self.__class__.valid_ip(host): # ipv6 address without port server = host port = default_port else: # ipv4 address with port server, port = host.rsplit(":", 1) else: server = host port = default_port return server, port # determine prefix prefix = retrieve_header("prefix") if prefix is not None: environ["SCRIPT_NAME"] = prefix path_info = environ["PATH_INFO"] if path_info.startswith(prefix): environ["PATH_INFO"] = path_info[len(prefix) :] # determine scheme scheme = retrieve_header("scheme") if scheme is not None and "," in scheme: # Scheme might be something like "https,https" if doubly-reverse-proxied # without stripping original scheme header first, make sure to only use # the first entry in such a case. See #1391. scheme, _ = map(lambda x: x.strip(), scheme.split(",", 1)) if scheme is not None: environ["wsgi.url_scheme"] = scheme # determine host url_scheme = environ["wsgi.url_scheme"] host = retrieve_header("host") if host is not None: # if we have a host, we take server_name and server_port from it server, port = host_to_server_and_port(host, url_scheme) environ["HTTP_HOST"] = host environ["SERVER_NAME"] = server environ["SERVER_PORT"] = port elif environ.get("HTTP_HOST", None) is not None: # if we have a Host header, we use that and make sure our server name and port properties match it host = environ["HTTP_HOST"] server, port = host_to_server_and_port(host, url_scheme) environ["SERVER_NAME"] = server environ["SERVER_PORT"] = port else: # else we take a look at the server and port headers and if we have # something there we derive the host from it # determine server - should usually not be used server = retrieve_header("server") if server is not None: environ["SERVER_NAME"] = server # determine port - should usually not be used port = retrieve_header("port") if port is not None: environ["SERVER_PORT"] = port # reconstruct host header if ( url_scheme == "http" and environ["SERVER_PORT"] == "80" or url_scheme == "https" and environ["SERVER_PORT"] == "443" ): # default port for scheme, can be skipped environ["HTTP_HOST"] = environ["SERVER_NAME"] else: server_name_component = environ["SERVER_NAME"] if ":" in server_name_component and self.__class__.valid_ip( server_name_component ): # this is an ipv6 address, we need to wrap that in [ and ] before appending the port server_name_component = "[" + server_name_component + "]" environ["HTTP_HOST"] = server_name_component + ":" + environ["SERVER_PORT"] # call wrapped app with rewritten environment return environ
def __call__(self, environ): def retrieve_header(header_type): candidates = getattr(self, "_headers_" + header_type, []) fallback = getattr(self, "_fallback_" + header_type, None) for candidate in candidates: value = environ.get(candidate, None) if value is not None: return value else: return fallback def host_to_server_and_port(host, scheme): if host is None: return None, None if ":" in host: server, port = host.split(":", 1) else: server = host port = "443" if scheme == "https" else "80" return server, port # determine prefix prefix = retrieve_header("prefix") if prefix is not None: environ["SCRIPT_NAME"] = prefix path_info = environ["PATH_INFO"] if path_info.startswith(prefix): environ["PATH_INFO"] = path_info[len(prefix) :] # determine scheme scheme = retrieve_header("scheme") if scheme is not None and "," in scheme: # Scheme might be something like "https,https" if doubly-reverse-proxied # without stripping original scheme header first, make sure to only use # the first entry in such a case. See #1391. scheme, _ = map(lambda x: x.strip(), scheme.split(",", 1)) if scheme is not None: environ["wsgi.url_scheme"] = scheme # determine host url_scheme = environ["wsgi.url_scheme"] host = retrieve_header("host") if host is not None: # if we have a host, we take server_name and server_port from it server, port = host_to_server_and_port(host, url_scheme) environ["HTTP_HOST"] = host environ["SERVER_NAME"] = server environ["SERVER_PORT"] = port elif environ.get("HTTP_HOST", None) is not None: # if we have a Host header, we use that and make sure our server name and port properties match it host = environ["HTTP_HOST"] server, port = host_to_server_and_port(host, url_scheme) environ["SERVER_NAME"] = server environ["SERVER_PORT"] = port else: # else we take a look at the server and port headers and if we have # something there we derive the host from it # determine server - should usually not be used server = retrieve_header("server") if server is not None: environ["SERVER_NAME"] = server # determine port - should usually not be used port = retrieve_header("port") if port is not None: environ["SERVER_PORT"] = port # reconstruct host header if ( url_scheme == "http" and environ["SERVER_PORT"] == "80" or url_scheme == "https" and environ["SERVER_PORT"] == "443" ): # default port for scheme, can be skipped environ["HTTP_HOST"] = environ["SERVER_NAME"] else: environ["HTTP_HOST"] = environ["SERVER_NAME"] + ":" + environ["SERVER_PORT"] # call wrapped app with rewritten environment return environ
https://github.com/OctoPrint/OctoPrint/issues/1571
2016-11-02 00:17:16,691 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 00:17:19,844 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 00:17:20,100 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 00:17:20,334 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 00:17:20,336 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 00:17:20,346 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 00:17:20,351 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 00:17:20,371 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 00:17:21,692 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-11-02 00:17:21,788 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 00:17:21,806 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 00:17:21,809 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 00:17:21,811 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 00:17:22,104 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.25s 2016-11-02 00:17:22,670 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 00:17:22,902 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:11:10,154 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 03:14:01,795 - octoprint.server - INFO - Shutting down... 2016-11-02 03:14:02,184 - octoprint.server - INFO - Goodbye! 2016-11-02 03:14:16,125 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 03:14:16,259 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 03:14:17,892 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 03:14:17,901 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 03:14:17,940 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 03:14:19,684 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 03:14:22,884 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 03:14:22,888 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 03:14:23,143 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 03:14:23,145 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 03:14:23,154 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 03:14:23,159 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 03:14:23,180 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 03:14:37,260 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 03:14:37,314 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 03:14:37,331 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 03:14:37,335 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 03:14:37,368 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 03:14:37,442 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 03:14:37,518 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:14:48,850 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 03:15:01,339 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:15:02,935 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-11-02 03:24:51,097 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:24:51,171 - octoprint.server - INFO - Shutting down... 2016-11-02 03:24:51,519 - octoprint.server - INFO - Goodbye! 2016-11-02 03:25:05,352 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 03:25:05,410 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 03:25:06,708 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 03:25:06,718 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 03:25:06,758 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 03:25:06,905 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 03:25:23,967 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 03:25:23,970 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 03:25:23,978 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 03:25:23,980 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 03:25:23,990 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 03:25:23,994 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 03:25:24,015 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 03:25:25,091 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 03:25:25,109 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 03:25:25,113 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 03:25:25,157 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 03:25:25,188 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 03:25:25,257 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 03:25:25,326 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:25:27,666 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:25:36,973 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 03:26:46,885 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:26:47,591 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:32:43,091 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:32:43,742 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:32:49,563 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-11-02 03:32:49,777 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:32:49,896 - octoprint.server - INFO - Shutting down... 2016-11-02 03:32:49,996 - octoprint.server - INFO - Goodbye! 2016-11-02 03:33:10,526 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 03:33:10,583 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 03:33:12,817 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 03:33:12,827 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 03:33:12,866 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 03:33:13,011 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 03:33:16,307 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 03:33:16,311 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 03:33:16,319 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 03:33:16,321 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 03:33:16,330 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 03:33:16,334 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 03:33:16,356 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 03:33:30,330 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 03:33:30,381 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 03:33:30,398 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 03:33:30,402 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 03:33:30,403 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 03:33:30,502 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 03:33:30,574 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:33:33,386 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:33:46,183 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 03:34:33,652 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:34:37,335 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:34:42,524 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-11-02 03:33:06,458 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 03:33:06,518 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 03:33:07,828 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 03:33:07,837 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 03:33:07,877 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 03:33:08,023 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 03:33:11,495 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 03:33:11,499 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 03:33:11,508 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 03:33:11,510 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 03:33:11,520 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 03:33:11,523 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 03:33:11,543 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 03:59:33,594 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 03:59:33,653 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 03:59:33,671 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 03:59:33,675 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 03:59:33,677 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 03:59:33,684 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 03:59:33,897 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:59:38,824 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:00:03,736 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 04:00:03,808 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-11-02 04:00:04,101 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:00:04,755 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:05:32,852 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/util/__init__.py:546: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal if source == target: 2016-11-02 04:05:32,854 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/util/__init__.py:564: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal if value_source != value_target: 2016-11-02 04:05:35,839 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:05:36,366 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:05:39,140 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-11-02 04:13:32,000 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:13:32,611 - octoprint.server - INFO - Shutting down... 2016-11-02 04:13:33,440 - octoprint.server - INFO - Goodbye! 2016-11-02 04:13:47,150 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 04:13:47,210 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 04:13:48,528 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 04:13:48,538 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 04:13:48,577 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 04:13:48,721 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 04:13:52,262 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 04:13:52,266 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 04:13:52,522 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 04:13:52,524 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 04:13:52,534 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 04:13:52,605 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 04:13:52,627 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 04:14:07,012 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 04:14:07,031 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 04:14:07,036 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 04:14:07,080 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 04:14:07,112 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 04:14:07,166 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:14:07,250 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 04:14:07,357 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 04:14:27,132 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 04:15:36,138 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:19:34,890 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:20:13,054 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:30:53,724 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:34:53,201 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:35:50,338 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 05:22:52,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 06:10:18,940 - octoprint.server - INFO - Shutting down... 2016-11-02 06:10:19,864 - octoprint.server - INFO - Goodbye! 2016-11-02 06:10:36,796 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 06:10:36,859 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 06:10:53,534 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 06:10:53,544 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 06:10:53,551 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 06:10:53,707 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 06:10:57,016 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 06:10:57,020 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 06:10:57,028 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 06:10:57,036 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 06:10:57,040 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 06:10:57,045 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 06:10:57,066 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 06:10:57,911 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 06:10:57,928 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 06:10:57,932 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 06:10:57,948 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 06:10:57,980 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 06:10:58,012 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 06:10:58,159 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 06:11:09,736 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 06:17:41,307 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:17:43,465 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.86s 2016-11-02 06:19:47,510 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:19:47,614 - octoprint - ERROR - Exception on /favicon.ico [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:19:47,640 - octoprint - ERROR - Exception on /favicon.ico [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:20:14,008 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:20:14,213 - octoprint - ERROR - Exception on /favicon.ico [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:20:44,765 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:21:04,063 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:21:49,803 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:23:03,812 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:07,947 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:12,180 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:13,730 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:13,982 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:14,139 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:35,270 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:24:35,682 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:25:45,360 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:25:48,987 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:25:51,692 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:25:53,267 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:26:09,682 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:26:11,386 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:26:12,927 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:26:26,897 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:26:28,566 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:26:30,795 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:26:40,373 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:29:16,979 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:29:17,216 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:29:17,449 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:29:57,363 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:30:02,188 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:37:03,878 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:37:04,788 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:37:05,297 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:36,081 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:36,894 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:37,101 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:40,546 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:42,762 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:03,616 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,104 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,801 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,822 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,842 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,861 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,882 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:36,855 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,466 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,589 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,774 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,876 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,979 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:43,614 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:43,795 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:44,305 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:44,480 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:44,986 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,022 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,058 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,090 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,117 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,159 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,182 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,224 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,249 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,280 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,316 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,345 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,382 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,412 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,448 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,484 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:18,217 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:27,653 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:28,372 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:31,998 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:32,825 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:33,006 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:33,169 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:33,319 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:38,034 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:51,355 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:46:00,388 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:48:32,208 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:48:35,782 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:48:43,174 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:49:03,456 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:49:16,864 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:51:36,735 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:51:48,265 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3]
CookieError
def host_to_server_and_port(host, scheme): if host is None: return None, None default_port = "443" if scheme == "https" else "80" host = host.strip() if ":" in host: # we might have an ipv6 address here, or a port, or both if host[0] == "[": # that looks like an ipv6 address with port, e.g. [fec1::1]:80 address_end = host.find("]") if address_end == -1: # no ], that looks like a seriously broken address return None, None # extract server ip, skip enclosing [ and ] server = host[1:address_end] tail = host[address_end + 1 :] # now check if there's also a port if len(tail) and tail[0] == ":": # port included as well port = tail[1:] else: # no port, use default one port = default_port elif self.__class__.valid_ip(host): # ipv6 address without port server = host port = default_port else: # ipv4 address with port server, port = host.rsplit(":", 1) else: server = host port = default_port return server, port
def host_to_server_and_port(host, scheme): if host is None: return None, None if ":" in host: server, port = host.split(":", 1) else: server = host port = "443" if scheme == "https" else "80" return server, port
https://github.com/OctoPrint/OctoPrint/issues/1571
2016-11-02 00:17:16,691 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 00:17:19,844 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 00:17:20,100 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 00:17:20,334 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 00:17:20,336 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 00:17:20,346 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 00:17:20,351 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 00:17:20,371 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 00:17:21,692 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-11-02 00:17:21,788 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 00:17:21,806 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 00:17:21,809 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 00:17:21,811 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 00:17:22,104 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.25s 2016-11-02 00:17:22,670 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 00:17:22,902 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:11:10,154 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 03:14:01,795 - octoprint.server - INFO - Shutting down... 2016-11-02 03:14:02,184 - octoprint.server - INFO - Goodbye! 2016-11-02 03:14:16,125 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 03:14:16,259 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 03:14:17,892 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 03:14:17,901 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 03:14:17,940 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 03:14:19,684 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 03:14:22,884 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 03:14:22,888 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 03:14:23,143 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 03:14:23,145 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 03:14:23,154 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 03:14:23,159 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 03:14:23,180 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 03:14:37,260 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 03:14:37,314 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 03:14:37,331 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 03:14:37,335 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 03:14:37,368 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 03:14:37,442 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 03:14:37,518 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:14:48,850 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 03:15:01,339 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:15:02,935 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-11-02 03:24:51,097 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:24:51,171 - octoprint.server - INFO - Shutting down... 2016-11-02 03:24:51,519 - octoprint.server - INFO - Goodbye! 2016-11-02 03:25:05,352 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 03:25:05,410 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 03:25:06,708 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 03:25:06,718 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 03:25:06,758 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 03:25:06,905 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 03:25:23,967 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 03:25:23,970 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 03:25:23,978 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 03:25:23,980 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 03:25:23,990 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 03:25:23,994 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 03:25:24,015 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 03:25:25,091 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 03:25:25,109 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 03:25:25,113 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 03:25:25,157 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 03:25:25,188 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 03:25:25,257 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 03:25:25,326 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:25:27,666 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:25:36,973 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 03:26:46,885 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:26:47,591 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:32:43,091 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:32:43,742 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:32:49,563 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-11-02 03:32:49,777 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:32:49,896 - octoprint.server - INFO - Shutting down... 2016-11-02 03:32:49,996 - octoprint.server - INFO - Goodbye! 2016-11-02 03:33:10,526 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 03:33:10,583 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 03:33:12,817 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 03:33:12,827 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 03:33:12,866 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 03:33:13,011 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 03:33:16,307 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 03:33:16,311 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 03:33:16,319 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 03:33:16,321 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 03:33:16,330 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 03:33:16,334 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 03:33:16,356 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 03:33:30,330 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 03:33:30,381 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 03:33:30,398 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 03:33:30,402 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 03:33:30,403 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 03:33:30,502 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 03:33:30,574 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:33:33,386 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:33:46,183 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 03:34:33,652 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 03:34:37,335 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 03:34:42,524 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-11-02 03:33:06,458 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 03:33:06,518 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 03:33:07,828 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 03:33:07,837 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 03:33:07,877 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 03:33:08,023 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 03:33:11,495 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 03:33:11,499 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 03:33:11,508 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 03:33:11,510 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 03:33:11,520 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 03:33:11,523 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 03:33:11,543 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 03:59:33,594 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 03:59:33,653 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 03:59:33,671 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 03:59:33,675 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 03:59:33,677 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 03:59:33,684 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 03:59:33,897 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 03:59:38,824 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:00:03,736 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 04:00:03,808 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-11-02 04:00:04,101 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:00:04,755 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:05:32,852 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/util/__init__.py:546: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal if source == target: 2016-11-02 04:05:32,854 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/util/__init__.py:564: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal if value_source != value_target: 2016-11-02 04:05:35,839 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:05:36,366 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:05:39,140 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-11-02 04:13:32,000 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:13:32,611 - octoprint.server - INFO - Shutting down... 2016-11-02 04:13:33,440 - octoprint.server - INFO - Goodbye! 2016-11-02 04:13:47,150 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 04:13:47,210 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 04:13:48,528 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 04:13:48,538 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 04:13:48,577 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 04:13:48,721 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 04:13:52,262 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 04:13:52,266 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 04:13:52,522 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 04:13:52,524 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 04:13:52,534 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 04:13:52,605 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 04:13:52,627 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 04:14:07,012 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 04:14:07,031 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 04:14:07,036 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 04:14:07,080 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 04:14:07,112 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 04:14:07,166 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:14:07,250 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 04:14:07,357 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 04:14:27,132 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 04:15:36,138 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:19:34,890 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:20:13,054 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.0.255 2016-11-02 04:30:53,724 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:34:53,201 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 04:35:50,338 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 05:22:52,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.0.255 2016-11-02 06:10:18,940 - octoprint.server - INFO - Shutting down... 2016-11-02 06:10:19,864 - octoprint.server - INFO - Goodbye! 2016-11-02 06:10:36,796 - octoprint.server - INFO - Starting OctoPrint 1.2.16 (master branch) 2016-11-02 06:10:36,859 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-11-02 06:10:53,534 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers 2016-11-02 06:10:53,544 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-11-02 06:10:53,551 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-11-02 06:10:53,707 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-11-02 06:10:57,016 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-11-02 06:10:57,020 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-11-02 06:10:57,028 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/announcements | Automatic Shutdown (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown | Autoscroll (0.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoscroll | Cost Plugin (0.1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_cost | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/discovery | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Navbar Temperature Plugin (0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/softwareupdate | STL Viewer (0.3.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/plugins/virtual_printer 2016-11-02 06:10:57,036 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-11-02 06:10:57,040 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-11-02 06:10:57,045 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-11-02 06:10:57,066 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-11-02 06:10:57,911 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _http._tcp 2016-11-02 06:10:57,928 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for _octoprint._tcp 2016-11-02 06:10:57,932 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Solidoodle 2" for SSDP 2016-11-02 06:10:57,948 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-11-02 06:10:57,980 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-11-02 06:10:58,012 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-11-02 06:10:58,159 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter.fang64.lan/'} 2016-11-02 06:11:09,736 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://3dprinter/'} 2016-11-02 06:17:41,307 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:17:43,465 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.86s 2016-11-02 06:19:47,510 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:19:47,614 - octoprint - ERROR - Exception on /favicon.ico [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:19:47,640 - octoprint - ERROR - Exception on /favicon.ico [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:20:14,008 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:20:14,213 - octoprint - ERROR - Exception on /favicon.ico [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:20:44,765 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:21:04,063 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:21:49,803 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:23:03,812 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:07,947 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:12,180 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:13,730 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:13,982 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:14,139 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:24:35,270 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:24:35,682 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:25:45,360 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:25:48,987 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:25:51,692 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:25:53,267 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:26:09,682 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:26:11,386 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:26:12,927 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:26:26,897 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:26:28,566 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:26:30,795 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:26:40,373 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:29:16,979 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:29:17,216 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:29:17,449 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:29:57,363 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:30:02,188 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:37:03,878 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:37:04,788 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:37:05,297 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:36,081 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:36,894 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:37,101 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:40,546 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:38:42,762 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:03,616 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,104 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,801 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,822 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,842 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,861 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:39:04,882 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:36,855 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,466 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,589 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,774 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,876 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:37,979 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:43,614 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:43,795 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:44,305 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:44,480 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:44,986 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,022 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,058 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,090 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,117 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,159 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,182 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,224 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,249 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,280 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,316 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,345 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,382 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,412 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,448 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:40:45,484 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:18,217 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:27,653 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:28,372 - octoprint - ERROR - Exception on /webcam [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:31,998 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:32,825 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:33,006 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:33,169 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:33,319 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:38,034 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:41:51,355 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:46:00,388 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:48:32,208 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:48:35,782 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:48:43,174 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:49:03,456 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.10.0.255 2016-11-02 06:49:16,864 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.10.0.255 2016-11-02 06:51:36,735 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3] 2016-11-02 06:51:48,265 - octoprint - ERROR - Exception on / [GET] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1479, in full_dispatch_request response = self.process_response(response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1693, in process_response self.save_session(ctx.session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 837, in save_session return self.session_interface.save_session(self, session, response) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/sessions.py", line 329, in save_session domain=domain, path=path, secure=secure) File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/util/flask.py", line 411, in set_cookie flask.Response.set_cookie(self, key + flask.request.cookie_suffix, *args, **kwargs) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 856, in set_cookie self.charset)) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/http.py", line 789, in dump_cookie morsel = _ExtendedMorsel(key, value) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/_internal.py", line 273, in __init__ self.set(name, value, value) File "/usr/lib/python2.7/Cookie.py", line 459, in set raise CookieError("Illegal key value: %s" % key) CookieError: Illegal key value: session_Pa000:1210:8121::3]
CookieError
def _estimatePrintTimeLeft( self, progress, printTime, cleanedPrintTime, statisticalTotalPrintTime, statisticalTotalPrintTimeType, ): """ Tries to estimate the print time left for the print job This is somewhat horrible since accurate print time estimation is pretty much impossible to achieve, considering that we basically have only two data points (current progress in file and time needed for that so far - former prints or a file analysis might not have happened or simply be completely impossible e.g. if the file is stored on the printer's SD card) and hence can only do a linear estimation of a completely non-linear process. That's a recipe for inaccurate predictions right there. Yay. Anyhow, here's how this implementation works. This method gets the current progress in the printed file (percentage based on bytes read vs total bytes), the print time that elapsed, the same print time with the heat up times subtracted (if possible) and if available also some statistical total print time (former prints or a result from the GCODE analysis). 1. First get an "intelligent" estimate based on the :class:`~octoprint.printer.estimation.TimeEstimationHelper`. That thing tries to detect if the estimation based on our progress and time needed for that becomes stable over time through a rolling window and only returns a result once that appears to be the case. 2. If we have any statistical data (former prints or a result from the GCODE analysis) but no intelligent estimate yet, we'll use that for the next step. Otherwise, up to a certain percentage in the print we do a percentage based weighing of the statistical data and the intelligent estimate - the closer to the beginning of the print, the more precedence for the statistical data, the closer to the cut off point, the more precendence for the intelligent estimate. This is our preliminary total print time. 3. If the total print time is set, we do a sanity check for it. Based on the total print time estimate and the time we already spent printing, we calculate at what percentage we SHOULD be and compare that to the percentage at which we actually ARE. If it's too far off, our total can't be trusted and we fall back on the dumb estimate. Same if the time we spent printing is already higher than our total estimate. 4. If we do NOT have a total print time estimate yet but we've been printing for longer than a configured amount of minutes or are further in the file than a configured percentage, we also use the dumb estimate for now. Yes, all this still produces horribly inaccurate results. But we have to do this live during the print and hence can't produce to much computational overhead, we do not have any insight into the firmware implementation with regards to planner setup and acceleration settings, we might not even have access to the printed file's contents and such we need to find something that works "mostly" all of the time without costing too many resources. Feel free to propose a better solution within the above limitations (and I mean that, this solution here makes me unhappy). Args: progress (float or None): Current percentage in the printed file printTime (float or None): Print time elapsed so far cleanedPrintTime (float or None): Print time elapsed minus the time needed for getting up to temperature (if detectable). statisticalTotalPrintTime (float or None): Total print time of past prints against same printer profile, or estimated total print time from GCODE analysis. statisticalTotalPrintTimeType (str or None): Type of statistical print time, either "average" (total time of former prints) or "analysis" Returns: (2-tuple) estimated print time left or None if not proper estimate could be made at all, origin of estimation """ if progress is None or printTime is None or cleanedPrintTime is None: return None dumbTotalPrintTime = printTime / progress estimatedTotalPrintTime = self._estimateTotalPrintTime(progress, cleanedPrintTime) totalPrintTime = estimatedTotalPrintTime printTimeLeftOrigin = "estimate" if statisticalTotalPrintTime is not None: if estimatedTotalPrintTime is None: # no estimate yet, we'll use the statistical total totalPrintTime = statisticalTotalPrintTime printTimeLeftOrigin = statisticalTotalPrintTimeType else: if progress < self._timeEstimationStatsWeighingUntil: # still inside weighing range, use part stats, part current estimate sub_progress = progress * (1 / self._timeEstimationStatsWeighingUntil) if sub_progress > 1.0: sub_progress = 1.0 printTimeLeftOrigin = "mixed-" + statisticalTotalPrintTimeType else: # use only the current estimate sub_progress = 1.0 printTimeLeftOrigin = "estimate" # combine totalPrintTime = ( 1.0 - sub_progress ) * statisticalTotalPrintTime + sub_progress * estimatedTotalPrintTime printTimeLeft = None if totalPrintTime is not None: # sanity check current total print time estimate assumed_progress = cleanedPrintTime / totalPrintTime min_progress = progress - self._timeEstimationValidityRange max_progress = progress + self._timeEstimationValidityRange if ( min_progress <= assumed_progress <= max_progress and totalPrintTime > cleanedPrintTime ): # appears sane, we'll use it printTimeLeft = totalPrintTime - cleanedPrintTime else: # too far from the actual progress or negative, # we use the dumb print time instead printTimeLeft = dumbTotalPrintTime - cleanedPrintTime printTimeLeftOrigin = "linear" else: printTimeLeftOrigin = "linear" if ( progress > self._timeEstimationForceDumbFromPercent or cleanedPrintTime >= self._timeEstimationForceDumbAfterMin * 60 ): # more than x% or y min printed and still no real estimate, ok, we'll use the dumb variant :/ printTimeLeft = dumbTotalPrintTime - cleanedPrintTime if printTimeLeft is not None and printTimeLeft < 0: # shouldn't actually happen, but let's make sure printTimeLeft = None return printTimeLeft, printTimeLeftOrigin
def _estimatePrintTimeLeft( self, progress, printTime, cleanedPrintTime, statisticalTotalPrintTime, statisticalTotalPrintTimeType, ): """ Tries to estimate the print time left for the print job This is somewhat horrible since accurate print time estimation is pretty much impossible to achieve, considering that we basically have only two data points (current progress in file and time needed for that so far - former prints or a file analysis might not have happened or simply be completely impossible e.g. if the file is stored on the printer's SD card) and hence can only do a linear estimation of a completely non-linear process. That's a recipe for inaccurate predictions right there. Yay. Anyhow, here's how this implementation works. This method gets the current progress in the printed file (percentage based on bytes read vs total bytes), the print time that elapsed, the same print time with the heat up times subtracted (if possible) and if available also some statistical total print time (former prints or a result from the GCODE analysis). 1. First get an "intelligent" estimate based on the :class:`~octoprint.printer.estimation.TimeEstimationHelper`. That thing tries to detect if the estimation based on our progress and time needed for that becomes stable over time through a rolling window and only returns a result once that appears to be the case. 2. If we have any statistical data (former prints or a result from the GCODE analysis) but no intelligent estimate yet, we'll use that for the next step. Otherwise, up to a certain percentage in the print we do a percentage based weighing of the statistical data and the intelligent estimate - the closer to the beginning of the print, the more precedence for the statistical data, the closer to the cut off point, the more precendence for the intelligent estimate. This is our preliminary total print time. 3. If the total print time is set, we do a sanity check for it. Based on the total print time estimate and the time we already spent printing, we calculate at what percentage we SHOULD be and compare that to the percentage at which we actually ARE. If it's too far off, our total can't be trusted and we fall back on the dumb estimate. Same if the time we spent printing is already higher than our total estimate. 4. If we do NOT have a total print time estimate yet but we've been printing for longer than a configured amount of minutes or are further in the file than a configured percentage, we also use the dumb estimate for now. Yes, all this still produces horribly inaccurate results. But we have to do this live during the print and hence can't produce to much computational overhead, we do not have any insight into the firmware implementation with regards to planner setup and acceleration settings, we might not even have access to the printed file's contents and such we need to find something that works "mostly" all of the time without costing too many resources. Feel free to propose a better solution within the above limitations (and I mean that, this solution here makes me unhappy). Args: progress (float or None): Current percentage in the printed file printTime (float or None): Print time elapsed so far cleanedPrintTime (float or None): Print time elapsed minus the time needed for getting up to temperature (if detectable). statisticalTotalPrintTime (float or None): Total print time of past prints against same printer profile, or estimated total print time from GCODE analysis. statisticalTotalPrintTimeType (str or None): Type of statistical print time, either "average" (total time of former prints) or "analysis" Returns: (2-tuple) estimated print time left or None if not proper estimate could be made at all, origin of estimation """ if progress is None or printTime is None or cleanedPrintTime is None: return None dumbTotalPrintTime = printTime / progress estimatedTotalPrintTime = self._estimateTotalPrintTime(progress, cleanedPrintTime) totalPrintTime = estimatedTotalPrintTime printTimeLeftOrigin = "estimate" if statisticalTotalPrintTime is not None: if estimatedTotalPrintTime is None: # no estimate yet, we'll use the statistical total totalPrintTime = statisticalTotalPrintTime printTimeLeftOrigin = statisticalTotalPrintTimeType else: if progress < self._timeEstimationStatsWeighingUntil: # still inside weighing range, use part stats, part current estimate sub_progress = progress * (1 / self._timeEstimationStatsWeighingUntil) if sub_progress > 1.0: sub_progress = 1.0 printTimeLeftOrigin = "mixed-" + statisticalTotalPrintTimeType else: # use only the current estimate sub_progress = 1.0 printTimeLeftOrigin = "estimate" # combine totalPrintTime = ( 1.0 - sub_progress ) * statisticalTotalPrintTime + sub_progress * estimatedTotalPrintTime printTimeLeft = None if totalPrintTime is not None: # sanity check current total print time estimate assumed_progress = cleanedPrintTime / totalPrintTime min_progress = progress - self._timeEstimationValidityRange max_progress = progress + self._timeEstimationValidityRange if ( min_progress <= assumed_progress <= max_progress and totalPrintTime > cleanedPrintTime ): # appears sane, we'll use it printTimeLeft = totalPrintTime - cleanedPrintTime else: # too far from the actual progress or negative, # we use the dumb print time instead printTimeLeft = dumbTotalPrintTime - cleanedPrintTime printTimeLeftOrigin = "linear" elif ( progress > self._timeEstimationForceDumbFromPercent or cleanedPrintTime * 60 >= self._timeEstimationForceDumbAfterMin ): # more than x% or y min printed and still no real estimate, ok, we'll use the dumb variant :/ printTimeLeft = dumbTotalPrintTime - cleanedPrintTime printTimeLeftOrigin = "linear" if printTimeLeft < 0: # shouldn't actually happen, but let's make sure return None, None return printTimeLeft, printTimeLeftOrigin
https://github.com/OctoPrint/OctoPrint/issues/1428
2016-07-29 19:23:16,406 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-29 19:23:16,410 - octoprint.server.util.sockjs - WARNING - Could not send message to client 192.168.1.1: 'utf8' codec can't decode byte 0x87 in position 1: invalid start byte 2016-07-29 19:23:16,562 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-29 19:23:20,946 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-29 19:23:21,216 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.25s 2016-07-29 19:23:53,291 - octoprint.plugins.softwareupdate - INFO - Starting update of gpx to 2.5.4... 2016-07-29 19:24:55,987 - octoprint.plugins.softwareupdate - INFO - Update of gpx to 2.5.4 successful! 2016-07-29 19:24:56,158 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-29 19:25:37,270 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-29 19:25:51,977 - octoprint.plugins.GPX - INFO - Open /home/pi/.octoprint/data/GPX/gpx.ini 2016-07-29 19:25:51,979 - octoprint.plugins.GPX - INFO - Write /home/pi/.octoprint/data/GPX/gpx.ini 2016-07-29 19:25:52,196 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-29 19:26:29,058 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-29 19:26:29,066 - octoprint.server - INFO - Shutting down... 2016-07-29 19:26:29,105 - octoprint.server - INFO - Goodbye! 2016-07-29 19:26:44,742 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-29 19:26:44,790 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-29 19:26:45,582 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-29 19:26:45,583 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 14 hook handlers 2016-07-29 19:26:45,588 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-07-29 19:26:45,687 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-07-29 19:26:45,777 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-29 19:26:47,649 - octoprint.util.pip - INFO - Found pip at /home/pi/OctoPrint/venv/bin/pip, version is 8.1.1 2016-07-29 19:26:47,652 - octoprint.plugin.core - INFO - Initialized 14 plugin implementation(s) 2016-07-29 19:26:47,753 - octoprint.plugin.core - INFO - 14 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | BQ Android App Companion (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_bqappcompanion | CuraEngine (<= 15.04) (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_displayprogress | GPX (2.5.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GPX | Navbar Temperature Plugin (0.8) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | PortLister (0.1.5) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_portlister | Slack (0.2.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slack | Software Update (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/status_line | STL Viewer (0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-29 19:26:47,754 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-29 19:26:47,762 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-29 19:26:47,944 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-07-29 19:26:47,954 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-07-29 19:26:48,362 - octoprint.plugins.GPX - INFO - Connecting through x3g. 2016-07-29 19:26:48,365 - octoprint.plugins.GPX - INFO - GPXPrinter created, port: /dev/ttyACM0, baudrate: 115200 2016-07-29 19:26:50,473 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-07-29 19:26:50,541 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-07-29 19:26:50,543 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-29 19:26:50,584 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-07-29 19:26:50,636 - octoprint.plugins.portlister - INFO - Port Lister () {} 2016-07-29 19:26:50,804 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://rheyes.co.uk/'} 2016-07-29 19:26:52,403 - octoprint.plugins.GPX - INFO - gpx.connect succeeded 2016-07-29 19:27:04,090 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-29 19:27:04,109 - octoprint.server.util.sockjs - WARNING - Could not send message to client 192.168.1.1: 'utf8' codec can't decode byte 0x87 in position 1: invalid start byte 2016-07-29 19:27:07,549 - octoprint.util.pip - INFO - Found pip at /home/pi/OctoPrint/venv/bin/pip, version is 8.1.1 2016-07-29 19:27:07,615 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-29 19:27:08,453 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://80.229.11.1/'} 2016-07-29 19:27:08,848 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-29 19:27:10,405 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-29 19:27:10,409 - octoprint.server.util.sockjs - WARNING - Could not send message to client 192.168.1.1: 'utf8' codec can't decode byte 0x87 in position 1: invalid start byte 2016-07-29 19:27:10,475 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-29 19:27:10,478 - octoprint.server.util.sockjs - WARNING - Could not send message to client 192.168.1.1: 'utf8' codec can't decode byte 0x87 in position 1: invalid start byte 2016-07-29 19:27:10,484 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-29 19:27:10,986 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-29 19:27:11,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://rheyes.co.uk/'} 2016-07-29 19:27:11,344 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://80.229.11.1/'} 2016-07-29 19:27:11,531 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://127.0.0.1/'} 2016-07-29 19:27:13,736 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://rheyes.co.uk/'} 2016-07-29 19:27:15,778 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://www.qxqx11.com/'} 2016-07-29 19:27:17,759 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://www.558uu.com/'} 2016-07-29 19:27:19,823 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://www.165zz.com/'} 2016-07-29 19:27:22,036 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://www.250xx.com/'} 2016-07-29 19:27:42,836 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-29 19:27:47,959 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-29 19:29:10,214 - octoprint.plugins.GPX - INFO - Open /home/pi/.octoprint/data/GPX/gpx.ini 2016-07-29 19:29:10,216 - octoprint.plugins.GPX - INFO - Write /home/pi/.octoprint/data/GPX/gpx.ini 2016-07-29 19:29:14,903 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-29 19:29:14,920 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-29 19:30:52,420 - octoprint.filemanager.analysis - INFO - Starting analysis of local:18650_cell_-_Part_1.gcode 2016-07-29 19:31:01,454 - octoprint.server.api - INFO - Performing command: /home/pi/start-webcam.sh 2016-07-29 19:31:09,179 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-29 19:31:09,181 - octoprint.server.util.sockjs - WARNING - Could not send message to client 192.168.1.1: 'utf8' codec can't decode byte 0x87 in position 1: invalid start byte 2016-07-29 19:31:09,187 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-29 19:31:09,340 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-29 20:00:49,504 - octoprint.filemanager.analysis - INFO - Starting analysis of local:18650_cell_-_Part_1.gcode 2016-07-30 00:54:30,280 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-30 00:54:30,536 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-30 00:54:30,540 - octoprint.server.util.sockjs - WARNING - Could not send message to client 192.168.1.1: 'utf8' codec can't decode byte 0x87 in position 1: invalid start byte 2016-07-30 00:54:30,548 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-30 09:15:51,047 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-30 09:15:51,049 - octoprint.server.util.sockjs - WARNING - Could not send message to client 192.168.1.1: 'utf8' codec can't decode byte 0x87 in position 1: invalid start byte 2016-07-30 09:15:51,223 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-30 09:15:52,320 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.33s 2016-07-30 09:16:50,992 - octoprint.plugins.GPX - INFO - Open /home/pi/.octoprint/data/GPX/gpx.ini 2016-07-30 09:16:50,994 - octoprint.plugins.GPX - INFO - Write /home/pi/.octoprint/data/GPX/gpx.ini 2016-07-30 09:16:51,192 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-30 09:16:52,004 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-30 09:16:58,360 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.2.15... 2016-07-30 09:17:14,592 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.2.15 successful! 2016-07-30 09:17:14,700 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-30 09:17:49,170 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-30 09:17:50,845 - octoprint.server - INFO - Shutting down... 2016-07-30 09:17:51,171 - octoprint.server - INFO - Goodbye! 2016-07-30 09:18:04,483 - octoprint.server - INFO - Starting OctoPrint 1.2.15.post1+gafdb98a (master branch) 2016-07-30 09:18:04,574 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-30 09:18:05,491 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-30 09:18:05,492 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 14 hook handlers 2016-07-30 09:18:05,497 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-07-30 09:18:05,615 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-07-30 09:18:05,694 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-07-30 09:18:07,530 - octoprint.util.pip - INFO - Found pip at /home/pi/OctoPrint/venv/bin/pip, version is 8.1.1 2016-07-30 09:18:07,533 - octoprint.plugin.core - INFO - Initialized 14 plugin implementation(s) 2016-07-30 09:18:07,634 - octoprint.plugin.core - INFO - 14 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/plugins/announcements | BQ Android App Companion (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_bqappcompanion | CuraEngine (<= 15.04) (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/plugins/discovery | DisplayProgress (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_displayprogress | GPX (2.5.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GPX | Navbar Temperature Plugin (0.8) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/plugins/pluginmanager | PortLister (0.1.5) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_portlister | Slack (0.2.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slack | Software Update (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/plugins/softwareupdate | Status Line (0.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/status_line | STL Viewer (0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_stlviewer | Virtual Printer (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-30 09:18:07,635 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-30 09:18:07,645 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-30 09:18:07,647 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-07-30 09:18:07,657 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-07-30 09:18:08,621 - octoprint.plugins.GPX - INFO - Connecting through x3g. 2016-07-30 09:18:08,624 - octoprint.plugins.GPX - INFO - GPXPrinter created, port: /dev/ttyACM0, baudrate: 115200 2016-07-30 09:18:10,641 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-30 09:18:10,658 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-07-30 09:18:10,660 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-30 09:18:10,681 - octoprint.plugins.stlviewer - INFO - STL Viewer loaded! 2016-07-30 09:18:10,694 - octoprint.plugins.portlister - INFO - Port Lister () {} 2016-07-30 09:18:10,731 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-30 09:18:10,873 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://rheyes.co.uk/'} 2016-07-30 09:18:12,706 - octoprint.plugins.GPX - INFO - gpx.connect succeeded 2016-07-30 09:18:24,172 - octoprint.util.pip - INFO - Found pip at /home/pi/OctoPrint/venv/bin/pip, version is 8.1.1 2016-07-30 09:18:28,514 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://80.229.11.1/'} 2016-07-30 09:18:28,659 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-30 09:18:30,726 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://rheyes.co.uk/'} 2016-07-30 09:18:30,758 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://80.229.11.1/'} 2016-07-30 09:18:30,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://127.0.0.1/'} 2016-07-30 09:18:32,752 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://www.qxqx11.com/'} 2016-07-30 09:18:34,789 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://rheyes.co.uk/'} 2016-07-30 09:18:36,771 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://www.558uu.com/'} 2016-07-30 09:18:38,720 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://www.165zz.com/'} 2016-07-30 09:18:40,729 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://www.250xx.com/'} 2016-07-30 09:36:59,498 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1) HTTPServerRequest(protocol='http', host='rheyes.co.uk', method='GET', uri='/robots.txt', version='HTTP/1.0', remote_ip='127.0.0.1', headers={'Host': 'rheyes.co.uk', 'X-Forwarded-For': '108.59.8.70', 'Accept': '*/*', 'User-Agent': 'Mozilla/5.0 (compatible; MJ12bot/v1.4.5; http://www.majestic12.co.uk/bot.php?+)'}) Traceback (most recent call last): File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute result = self.prepare() File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/server/util/tornado.py", line 195, in prepare self._fallback(self.request, b"") File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.15.post1_gafdb98a-py2.7.egg/octoprint/server/util/tornado.py", line 474, in __call__ response.extend(app_response) File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next data = self.file.read(self.buffer_size) ValueError: I/O operation on closed file 2016-07-30 09:59:33,475 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-30 09:59:34,928 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-30 09:59:35,095 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-30 09:59:38,915 - octoprint.server.api - INFO - Performing command: /home/pi/start-webcam.sh 2016-07-30 10:02:11,478 - octoprint.filemanager.analysis - INFO - Starting analysis of local:18650_chamber_-_triple_chamber.gcode 2016-07-30 11:13:48,729 - octoprint.filemanager.analysis - INFO - Starting analysis of local:18650_chamber_-_triple_chamber.gcode 2016-07-30 15:19:39,485 - octoprint.filemanager.analysis - INFO - Starting analysis of local:18650_chamber_-_triple_chamber.gcode 2016-07-30 16:33:54,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1 2016-07-30 16:33:54,576 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1 2016-07-30 16:33:55,647 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.35s 2016-07-30 16:35:06,065 - octoprint.filemanager.analysis - INFO - Starting analysis of local:18650_chamber_-_triple_chamber.gcode
ValueError
def _on_part_start(self, name, content_type, filename=None): """ Called for new parts in the multipart stream. If ``filename`` is given creates new ``file`` part (which leads to storage of the data as temporary file on disk), if not creates a new ``data`` part (which stores incoming data in memory). Structure of ``file`` parts: * ``name``: name of the part * ``filename``: filename associated with the part * ``path``: path to the temporary file storing the file's data * ``content_type``: content type of the part * ``file``: file handle for the temporary file (mode "wb", not deleted on close, will be deleted however after handling of the request has finished in :func:`_handle_method`) Structure of ``data`` parts: * ``name``: name of the part * ``content_type``: content type of the part * ``data``: bytes of the part (initialized to an empty string) :param name: name of the part :param content_type: content type of the part :param filename: filename associated with the part. :return: dict describing the new part """ if filename is not None: # this is a file import tempfile handle = tempfile.NamedTemporaryFile( mode="wb", prefix=self._file_prefix, suffix=self._file_suffix, dir=self._path, delete=False, ) return dict( name=tornado.escape.utf8(name), filename=tornado.escape.utf8(filename), path=tornado.escape.utf8(handle.name), content_type=tornado.escape.utf8(content_type), file=handle, ) else: return dict( name=tornado.escape.utf8(name), content_type=tornado.escape.utf8(content_type), data=b"", )
def _on_part_start(self, name, content_type, filename=None): """ Called for new parts in the multipart stream. If ``filename`` is given creates new ``file`` part (which leads to storage of the data as temporary file on disk), if not creates a new ``data`` part (which stores incoming data in memory). Structure of ``file`` parts: * ``name``: name of the part * ``filename``: filename associated with the part * ``path``: path to the temporary file storing the file's data * ``content_type``: content type of the part * ``file``: file handle for the temporary file (mode "wb", not deleted on close, will be deleted however after handling of the request has finished in :func:`_handle_method`) Structure of ``data`` parts: * ``name``: name of the part * ``content_type``: content type of the part * ``data``: bytes of the part (initialized to an empty string) :param name: name of the part :param content_type: content type of the part :param filename: filename associated with the part. :return: dict describing the new part """ if filename is not None: # this is a file import tempfile handle = tempfile.NamedTemporaryFile( mode="wb", prefix=self._file_prefix, suffix=self._file_suffix, dir=self._path, delete=False, ) return dict( name=tornado.escape.utf8(name), filename=tornado.escape.utf8(filename), path=tornado.escape.utf8(handle.name), content_type=tornado.escape.utf8(content_type), file=handle, ) else: return dict(name=tornado.escape.utf8(name), content_type=content_type, data=b"")
https://github.com/OctoPrint/OctoPrint/issues/1531
2016-10-04 17:22:29,805 - octoprint - ERROR - Exception on /api/files/local [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1473, in full_dispatch_request rv = self.preprocess_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1666, in preprocess_request rv = func() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/__init__.py", line 675, in before_request g.locale = self._get_locale() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/__init__.py", line 543, in _get_locale if "l10n" in request.values: File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/local.py", line 336, in __getattr__ return getattr(self._get_current_object(), name) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/utils.py", line 77, in __get__ value = self.func(obj) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 390, in values for d in self.args, self.form: File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/utils.py", line 77, in __get__ value = self.func(obj) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 383, in form self._load_form_data() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/wrappers.py", line 165, in _load_form_data RequestBase._load_form_data(self) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 318, in _load_form_data data = parser.parse_from_environ(self.environ) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/formparser.py", line 164, in parse_from_environ return self.parse(stream, mimetype, content_length, options) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/formparser.py", line 182, in parse input_stream = LimitedStream(stream, content_length) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 736, in __init__ self._read = stream.read AttributeError: 'unicode' object has no attribute 'read' 2016-10-04 17:34:06,720 - octoprint.server.util.sockjs - INFO - Client connection closed: 172.20.10.3
AttributeError
def environ(request, body=None): """ Converts a ``tornado.httputil.HTTPServerRequest`` to a WSGI environment. An optional ``body`` to be used for populating ``wsgi.input`` can be supplied (either a string or a stream). If not supplied, ``request.body`` will be wrapped into a ``io.BytesIO`` stream and used instead. :param request: the ``tornado.httpserver.HTTPServerRequest`` to derive the WSGI environment from :param body: an optional body to use as ``wsgi.input`` instead of ``request.body``, can be a string or a stream """ from tornado.wsgi import to_wsgi_str import sys import io # determine the request_body to supply as wsgi.input if body is not None: if isinstance(body, (bytes, str, unicode)): request_body = io.BytesIO(tornado.escape.utf8(body)) else: request_body = body else: request_body = io.BytesIO(tornado.escape.utf8(request.body)) hostport = request.host.split(":") if len(hostport) == 2: host = hostport[0] port = int(hostport[1]) else: host = request.host port = 443 if request.protocol == "https" else 80 environ = { "REQUEST_METHOD": request.method, "SCRIPT_NAME": "", "PATH_INFO": to_wsgi_str( tornado.escape.url_unescape(request.path, encoding=None, plus=False) ), "QUERY_STRING": request.query, "REMOTE_ADDR": request.remote_ip, "SERVER_NAME": host, "SERVER_PORT": str(port), "SERVER_PROTOCOL": request.version, "wsgi.version": (1, 0), "wsgi.url_scheme": request.protocol, "wsgi.input": request_body, "wsgi.errors": sys.stderr, "wsgi.multithread": False, "wsgi.multiprocess": True, "wsgi.run_once": False, } if "Content-Type" in request.headers: environ["CONTENT_TYPE"] = request.headers.pop("Content-Type") if "Content-Length" in request.headers: environ["CONTENT_LENGTH"] = request.headers.pop("Content-Length") for key, value in request.headers.items(): environ["HTTP_" + key.replace("-", "_").upper()] = value return environ
def environ(request, body=None): """ Converts a ``tornado.httputil.HTTPServerRequest`` to a WSGI environment. An optional ``body`` to be used for populating ``wsgi.input`` can be supplied (either a string or a stream). If not supplied, ``request.body`` will be wrapped into a ``io.BytesIO`` stream and used instead. :param request: the ``tornado.httpserver.HTTPServerRequest`` to derive the WSGI environment from :param body: an optional body to use as ``wsgi.input`` instead of ``request.body``, can be a string or a stream """ from tornado.wsgi import to_wsgi_str import sys import io # determine the request_body to supply as wsgi.input if body is not None: if isinstance(body, (bytes, str)): request_body = io.BytesIO(tornado.escape.utf8(body)) else: request_body = body else: request_body = io.BytesIO(tornado.escape.utf8(request.body)) hostport = request.host.split(":") if len(hostport) == 2: host = hostport[0] port = int(hostport[1]) else: host = request.host port = 443 if request.protocol == "https" else 80 environ = { "REQUEST_METHOD": request.method, "SCRIPT_NAME": "", "PATH_INFO": to_wsgi_str( tornado.escape.url_unescape(request.path, encoding=None, plus=False) ), "QUERY_STRING": request.query, "REMOTE_ADDR": request.remote_ip, "SERVER_NAME": host, "SERVER_PORT": str(port), "SERVER_PROTOCOL": request.version, "wsgi.version": (1, 0), "wsgi.url_scheme": request.protocol, "wsgi.input": request_body, "wsgi.errors": sys.stderr, "wsgi.multithread": False, "wsgi.multiprocess": True, "wsgi.run_once": False, } if "Content-Type" in request.headers: environ["CONTENT_TYPE"] = request.headers.pop("Content-Type") if "Content-Length" in request.headers: environ["CONTENT_LENGTH"] = request.headers.pop("Content-Length") for key, value in request.headers.items(): environ["HTTP_" + key.replace("-", "_").upper()] = value return environ
https://github.com/OctoPrint/OctoPrint/issues/1531
2016-10-04 17:22:29,805 - octoprint - ERROR - Exception on /api/files/local [POST] Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app response = self.full_dispatch_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1473, in full_dispatch_request rv = self.preprocess_request() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1666, in preprocess_request rv = func() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/__init__.py", line 675, in before_request g.locale = self._get_locale() File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.16-py2.7.egg/octoprint/server/__init__.py", line 543, in _get_locale if "l10n" in request.values: File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/local.py", line 336, in __getattr__ return getattr(self._get_current_object(), name) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/utils.py", line 77, in __get__ value = self.func(obj) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 390, in values for d in self.args, self.form: File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/utils.py", line 77, in __get__ value = self.func(obj) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 383, in form self._load_form_data() File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/wrappers.py", line 165, in _load_form_data RequestBase._load_form_data(self) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wrappers.py", line 318, in _load_form_data data = parser.parse_from_environ(self.environ) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/formparser.py", line 164, in parse_from_environ return self.parse(stream, mimetype, content_length, options) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/formparser.py", line 182, in parse input_stream = LimitedStream(stream, content_length) File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 736, in __init__ self._read = stream.read AttributeError: 'unicode' object has no attribute 'read' 2016-10-04 17:34:06,720 - octoprint.server.util.sockjs - INFO - Client connection closed: 172.20.10.3
AttributeError
def on_comm_state_change(self, state): """ Callback method for the comm object, called if the connection state changes. """ oldState = self._state state_string = None if self._comm is not None: state_string = self._comm.getStateString() # forward relevant state changes to gcode manager if oldState == comm.MachineCom.STATE_PRINTING: if self._selectedFile is not None: if ( state == comm.MachineCom.STATE_CLOSED or state == comm.MachineCom.STATE_ERROR or state == comm.MachineCom.STATE_CLOSED_WITH_ERROR ): self._fileManager.log_print( FileDestinations.SDCARD if self._selectedFile["sd"] else FileDestinations.LOCAL, self._selectedFile["filename"], time.time(), self._comm.getPrintTime(), False, self._printerProfileManager.get_current_or_default()["id"], ) self._analysisQueue.resume() # printing done, put those cpu cycles to good use elif state == comm.MachineCom.STATE_PRINTING: self._analysisQueue.pause() # do not analyse files while printing if ( state == comm.MachineCom.STATE_CLOSED or state == comm.MachineCom.STATE_CLOSED_WITH_ERROR ): if self._comm is not None: self._comm = None self._setProgressData(completion=0) self._setCurrentZ(None) self._setJobData(None, None, None) self._setState(state, state_string=state_string)
def on_comm_state_change(self, state): """ Callback method for the comm object, called if the connection state changes. """ oldState = self._state if self._comm is not None: state_string = self._comm.getStateString() # forward relevant state changes to gcode manager if oldState == comm.MachineCom.STATE_PRINTING: if self._selectedFile is not None: if ( state == comm.MachineCom.STATE_CLOSED or state == comm.MachineCom.STATE_ERROR or state == comm.MachineCom.STATE_CLOSED_WITH_ERROR ): self._fileManager.log_print( FileDestinations.SDCARD if self._selectedFile["sd"] else FileDestinations.LOCAL, self._selectedFile["filename"], time.time(), self._comm.getPrintTime(), False, self._printerProfileManager.get_current_or_default()["id"], ) self._analysisQueue.resume() # printing done, put those cpu cycles to good use elif state == comm.MachineCom.STATE_PRINTING: self._analysisQueue.pause() # do not analyse files while printing if ( state == comm.MachineCom.STATE_CLOSED or state == comm.MachineCom.STATE_CLOSED_WITH_ERROR ): if self._comm is not None: self._comm = None self._setProgressData(completion=0) self._setCurrentZ(None) self._setJobData(None, None, None) self._setState(state, state_string=state_string)
https://github.com/OctoPrint/OctoPrint/issues/1425
2016-07-27 22:37:37,999 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 22:37:38,006 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 22:37:38,141 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 22:37:38,141 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 6 mixin implementations, 3 hook handlers 2016-07-27 22:37:38,144 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 22:37:38,144 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 22:37:38,580 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 22:37:38,581 - octoprint.plugin.core - INFO - Initialized 6 plugin implementation(s) 2016-07-27 22:37:38,584 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 22:37:38,585 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 22:37:38,586 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 22:37:38,587 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 22:37:38,587 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 22:37:39,480 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-07-27 22:37:39,507 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 22:37:39,508 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-27 22:37:39,942 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 0.42s 2016-07-27 22:38:44,332 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 22:38:44,361 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:42:46,019 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-27 22:42:47,152 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-27 22:43:51,300 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin m33fio 2016-07-27 22:43:51,300 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 22:43:51,332 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 6 mixin implementations, 3 hook handlers 2016-07-27 22:43:51,332 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | !M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 22:44:08,646 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:45:05,713 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:46:24,241 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:53:46,721 - octoprint.server - INFO - Shutting down... 2016-07-27 22:53:47,299 - octoprint.server - INFO - Goodbye! 2016-07-27 22:53:59,456 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 22:53:59,462 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 22:53:59,574 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 22:53:59,574 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-27 22:53:59,576 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 22:53:59,576 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 22:53:59,580 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-27 22:53:59,975 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 22:53:59,976 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-27 22:53:59,983 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 22:53:59,984 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 22:53:59,986 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 22:53:59,986 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 22:53:59,990 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 22:54:00,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 22:54:00,476 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-27 22:54:00,489 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-27 22:54:00,530 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:00,530 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:00,547 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-27 22:54:04,451 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 22:54:04,495 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:04,496 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:04,496 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:04,496 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:04,496 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:05,923 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-27 22:54:06,895 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 22:54:06,986 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:07,126 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:07,127 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:07,130 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:07,131 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:07,132 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 22:54:18,319 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-27 22:54:19,573 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 22:54:19,919 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-27 22:54:20,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-27 22:56:45,401 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:00,048 - octoprint.server - INFO - Shutting down... 2016-07-27 23:10:00,757 - octoprint.server - INFO - Goodbye! 2016-07-27 23:10:11,409 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 23:10:11,414 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 23:10:11,517 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 23:10:11,517 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-27 23:10:11,519 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 23:10:11,519 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 23:10:11,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-27 23:10:11,909 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 23:10:11,909 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-27 23:10:11,917 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 23:10:11,917 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 23:10:11,919 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 23:10:11,920 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 23:10:11,923 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 23:10:12,418 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 23:10:12,419 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-27 23:10:12,423 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-27 23:10:12,460 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:12,460 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:12,476 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-27 23:10:12,933 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:10:13,428 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:13,428 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:13,430 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:13,431 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:13,431 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:13,468 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-27 23:10:14,199 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-27 23:10:15,671 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-27 23:10:16,622 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:10:16,670 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:16,705 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:16,706 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:16,710 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:16,711 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:10:16,711 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:11:18,765 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-27 23:11:22,716 - octoprint.server - INFO - Shutting down... 2016-07-27 23:11:23,443 - octoprint.server - INFO - Goodbye! 2016-07-27 23:18:53,617 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 23:18:53,628 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 23:18:53,824 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 23:18:53,824 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-27 23:18:53,826 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 23:18:53,827 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 23:18:53,834 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-27 23:18:54,394 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 23:18:54,394 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-27 23:18:54,395 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 23:18:54,395 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 23:18:54,397 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 23:18:54,401 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 23:18:54,457 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 23:18:54,632 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 23:18:54,639 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-27 23:18:54,642 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-27 23:18:54,697 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:18:54,697 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:18:54,713 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-27 23:19:11,787 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:19:11,817 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:19:11,818 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:19:11,818 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:19:11,819 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:19:11,819 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:19:11,856 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:18,401 - octoprint.server - INFO - Shutting down... 2016-07-27 23:25:18,748 - octoprint.server - INFO - Goodbye! 2016-07-27 23:25:24,729 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 23:25:24,733 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 23:25:24,837 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 23:25:24,838 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-27 23:25:24,839 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 23:25:24,839 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 23:25:24,846 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-27 23:25:25,211 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 23:25:25,212 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-27 23:25:25,212 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 23:25:25,213 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 23:25:25,214 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 23:25:25,215 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 23:25:25,218 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 23:25:25,751 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 23:25:25,752 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-27 23:25:25,759 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-27 23:25:25,801 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:25,801 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:25,819 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-27 23:25:25,891 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:25:26,887 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:26,887 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:26,888 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:26,888 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:26,888 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:27,771 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-27 23:25:28,753 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:25:28,778 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:28,790 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:28,798 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:28,799 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:28,799 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:28,809 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:25:53,372 - octoprint.printer.standard - ERROR - Exception while adding communication log entry Traceback (most recent call last): File "/home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/printer/standard.py", line 138, in _sendAddLogCallbacks try: callback.on_printer_add_log(data) File "/home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio/__init__.py", line 5561, in on_printer_add_log connection.close() AttributeError: 'NoneType' object has no attribute 'close' 2016-07-27 23:40:05,987 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-27 23:40:08,054 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 23:40:08,060 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 23:40:08,174 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 23:40:08,175 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-27 23:40:08,176 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 23:40:08,176 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 23:40:08,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-27 23:40:08,631 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 23:40:08,631 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-27 23:40:08,632 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 23:40:08,633 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 23:40:08,635 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 23:40:08,636 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 23:40:08,639 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 23:40:08,762 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-27 23:40:08,769 - octoprint.server - INFO - Listening on http://0.0.0.0:5001 2016-07-27 23:40:08,769 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 23:40:08,803 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:40:08,803 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:40:08,816 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-27 23:40:11,067 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:40:11,160 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:40:11,301 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:40:11,301 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:40:22,165 - octoprint.server - INFO - Shutting down... 2016-07-27 23:40:22,770 - octoprint.server - INFO - Goodbye! 2016-07-27 23:40:24,038 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:40:24,105 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:40:24,116 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:40:24,116 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:42:04,556 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:45:25,987 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:48:39,848 - octoprint.server - INFO - Shutting down... 2016-07-27 23:48:40,167 - octoprint.server - INFO - Goodbye! 2016-07-27 23:48:45,941 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 23:48:45,946 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 23:48:46,049 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 23:48:46,050 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-27 23:48:46,051 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 23:48:46,051 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 23:48:46,058 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-27 23:48:46,425 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 23:48:46,425 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-27 23:48:46,434 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 23:48:46,434 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 23:48:46,435 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 23:48:46,436 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 23:48:46,440 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 23:48:46,972 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-27 23:48:46,987 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-27 23:48:46,988 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 23:48:47,030 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:48:47,030 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:48:47,046 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-27 23:48:47,305 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:48:47,988 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:48:47,989 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:48:47,991 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:48:47,991 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:48:47,991 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:48:48,154 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-27 23:49:01,232 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-27 23:49:02,180 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:49:02,195 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:49:02,196 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:49:02,199 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:49:02,203 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:49:02,203 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:49:02,228 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:40,630 - octoprint.server - INFO - Shutting down... 2016-07-27 23:51:41,027 - octoprint.server - INFO - Goodbye! 2016-07-27 23:51:47,119 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 23:51:47,124 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 23:51:47,226 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 23:51:47,226 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-27 23:51:47,228 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 23:51:47,228 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 23:51:47,235 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-27 23:51:47,620 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 23:51:47,620 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-27 23:51:47,621 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 23:51:47,621 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 23:51:47,622 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 23:51:47,623 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 23:51:47,627 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 23:51:48,130 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 23:51:48,134 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-27 23:51:48,152 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-27 23:51:48,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:51:48,222 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:48,222 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:48,245 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-27 23:51:48,291 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:48,292 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:48,292 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:48,292 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:48,293 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:49,268 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-27 23:51:54,129 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-27 23:51:55,098 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:51:55,129 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:55,142 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:55,145 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:55,153 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:55,153 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:51:55,169 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:53:31,493 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-27 23:53:36,749 - octoprint.server - INFO - Shutting down... 2016-07-27 23:53:37,176 - octoprint.server - INFO - Goodbye! 2016-07-27 23:53:59,694 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-27 23:53:59,699 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-27 23:53:59,803 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-27 23:53:59,803 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-27 23:53:59,805 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-27 23:53:59,805 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-27 23:53:59,812 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-27 23:54:00,188 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-27 23:54:00,189 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-27 23:54:00,189 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-27 23:54:00,190 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-27 23:54:00,191 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-27 23:54:00,192 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-27 23:54:00,195 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-27 23:54:00,727 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-27 23:54:00,731 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-27 23:54:00,731 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-27 23:54:00,760 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:54:00,760 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:54:00,779 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-27 23:54:01,761 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-27 23:54:11,005 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-27 23:54:11,035 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:54:11,035 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:54:11,035 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:54:11,036 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:54:11,036 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:54:11,058 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-27 23:54:40,665 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 00:33:16,005 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 00:34:21,658 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 00:39:57,494 - octoprint.server - INFO - Shutting down... 2016-07-28 00:39:58,485 - octoprint.server - INFO - Goodbye! 2016-07-28 19:36:18,693 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-28 19:36:18,698 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-28 19:36:18,801 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-28 19:36:18,802 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-28 19:36:18,804 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-28 19:36:18,804 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-28 19:36:18,812 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-28 19:36:19,209 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-28 19:36:19,210 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-28 19:36:19,248 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-28 19:36:19,248 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-28 19:36:19,250 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-28 19:36:19,250 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-28 19:36:19,254 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-28 19:36:19,704 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-28 19:36:19,707 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-28 19:36:19,714 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-28 19:36:30,130 - octoprint.plugins.announcements - INFO - Loaded channel _important from http://octoprint.org/feeds/important.xml in 1e+01s 2016-07-28 19:36:30,299 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:36:30,300 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:36:30,312 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-28 19:36:31,446 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-28 19:36:34,622 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 19:36:34,696 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:36:34,937 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:36:34,937 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:36:34,938 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:36:34,938 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:36:34,939 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:19,404 - octoprint.server - INFO - Shutting down... 2016-07-28 19:40:19,782 - octoprint.server - INFO - Goodbye! 2016-07-28 19:40:25,282 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-28 19:40:25,287 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-28 19:40:25,418 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-28 19:40:25,419 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-28 19:40:25,421 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-28 19:40:25,421 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-28 19:40:25,431 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-28 19:40:25,817 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-28 19:40:25,818 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-28 19:40:25,821 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-28 19:40:25,821 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-28 19:40:25,823 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-28 19:40:25,824 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-28 19:40:25,827 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-28 19:40:26,292 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-28 19:40:26,302 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-28 19:40:26,312 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-28 19:40:26,359 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:26,360 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:26,369 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-28 19:40:26,951 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 19:40:27,337 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:27,337 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:27,338 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:27,340 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:27,340 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:27,593 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-28 19:40:32,188 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 19:40:33,169 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 19:40:33,191 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:33,197 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:33,200 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:33,211 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:33,212 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 19:40:33,235 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 20:44:37,063 - octoprint.filemanager.analysis - INFO - Starting analysis of local:bearing5_M3D.gcode 2016-07-28 20:53:58,390 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:12,906 - octoprint.server - INFO - Shutting down... 2016-07-28 21:02:13,826 - octoprint.server - INFO - Goodbye! 2016-07-28 21:02:22,336 - octoprint.server - INFO - Starting OctoPrint 1.2.13 (master branch) 2016-07-28 21:02:22,348 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-28 21:02:22,566 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-28 21:02:22,567 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-28 21:02:22,569 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-28 21:02:22,572 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-28 21:02:22,581 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-28 21:02:23,306 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-28 21:02:23,307 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-28 21:02:23,345 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.13-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-28 21:02:23,346 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-28 21:02:23,347 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-28 21:02:23,352 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-28 21:02:23,406 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-28 21:02:23,856 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-28 21:02:23,877 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-28 21:02:23,884 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-28 21:02:23,940 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:23,940 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:23,951 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-28 21:02:25,258 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-28 21:02:27,027 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:02:27,100 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:27,100 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:27,101 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:27,101 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:27,102 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:28,488 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-28 21:02:30,240 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-28 21:02:30,801 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:02:32,146 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:02:32,162 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:32,162 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:32,163 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:32,164 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:32,165 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:02:32,197 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:03:10,915 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:03:11,919 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:03:11,980 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:03:11,985 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:03:11,985 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:07:17,328 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:07:17,987 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:07:18,007 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:07:18,007 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:07:18,040 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:07:40,966 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:07:45,430 - octoprint.server - INFO - Shutting down... 2016-07-28 21:07:45,972 - octoprint.server - INFO - Goodbye! 2016-07-28 21:11:10,609 - octoprint.server - INFO - Starting OctoPrint 1.2.14 (master branch) 2016-07-28 21:11:10,615 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-28 21:11:10,721 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-28 21:11:10,722 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-28 21:11:10,723 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-28 21:11:10,725 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-28 21:11:10,731 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-07-28 21:11:11,124 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-28 21:11:11,125 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-28 21:11:11,125 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-28 21:11:11,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-28 21:11:11,127 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-28 21:11:11,128 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-28 21:11:11,132 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-28 21:11:11,622 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-28 21:11:11,625 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-28 21:11:11,641 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-28 21:11:11,690 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:11,691 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:11,714 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-28 21:11:12,768 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-28 21:11:33,136 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:11:33,207 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:33,212 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:33,212 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:33,212 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:33,213 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:33,213 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:37,968 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:11:38,872 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:11:38,932 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:38,983 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:38,983 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:38,984 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:38,984 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:38,984 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:11:59,904 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-28 21:12:00,902 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-28 21:12:01,099 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-28 21:12:01,929 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-28 21:12:19,387 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:12:30,419 - octoprint.printer.standard - ERROR - Exception while adding communication log entry Traceback (most recent call last): File "/home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/printer/standard.py", line 141, in _sendAddLogCallbacks try: callback.on_printer_add_log(data) File "/home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio/__init__.py", line 5561, in on_printer_add_log connection.close() AttributeError: 'NoneType' object has no attribute 'close' 2016-07-28 21:12:47,463 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:12:48,387 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:12:48,409 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:12:48,409 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:12:48,467 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:12:49,257 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-28 21:12:49,984 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-28 21:12:59,832 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:13:13,297 - py.warnings - WARNING - /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-07-28 21:13:14,024 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-07-28 21:13:27,920 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:14:21,737 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:14:37,252 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:14:38,163 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:14:38,186 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:14:38,186 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:14:38,223 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:09,470 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:16:10,166 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:16:10,223 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:10,238 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:10,248 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:34,682 - octoprint.server - INFO - Shutting down... 2016-07-28 21:16:34,737 - octoprint.server - INFO - Goodbye! 2016-07-28 21:16:43,231 - octoprint.server - INFO - Starting OctoPrint 1.2.14 (master branch) 2016-07-28 21:16:43,237 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-28 21:16:43,342 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-28 21:16:43,343 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-28 21:16:43,344 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-28 21:16:43,346 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-28 21:16:43,352 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-28 21:16:43,731 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-28 21:16:43,732 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-28 21:16:43,746 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-28 21:16:43,746 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-28 21:16:43,748 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-28 21:16:43,749 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-28 21:16:43,752 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-28 21:16:44,244 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-28 21:16:44,248 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-28 21:16:44,265 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-28 21:16:44,304 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:44,305 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:44,329 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-28 21:16:45,525 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-28 21:16:46,876 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:16:46,940 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:46,941 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:46,941 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:46,941 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:46,942 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:50,334 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:16:51,354 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:16:51,373 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:51,374 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:51,374 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:51,374 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:51,375 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:16:51,440 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:17:20,745 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:17:21,801 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:17:21,843 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:17:21,843 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:17:21,924 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:18:31,416 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:18:32,083 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:18:32,125 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:18:32,135 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:18:32,139 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:19:05,200 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:19:05,855 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:19:05,871 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:19:05,872 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:19:05,937 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:24:14,519 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:24:15,231 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:24:15,286 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:24:15,317 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:24:15,319 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:36,469 - octoprint.server - INFO - Shutting down... 2016-07-28 21:25:37,409 - octoprint.server - INFO - Goodbye! 2016-07-28 21:25:42,355 - octoprint.server - INFO - Starting OctoPrint 1.2.14 (master branch) 2016-07-28 21:25:42,360 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-28 21:25:42,472 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-28 21:25:42,472 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-28 21:25:42,474 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-28 21:25:42,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-28 21:25:42,486 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-28 21:25:42,867 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-28 21:25:42,867 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-28 21:25:42,868 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-28 21:25:42,869 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-28 21:25:42,870 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-28 21:25:42,871 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-28 21:25:42,874 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-28 21:25:43,366 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-28 21:25:43,369 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-28 21:25:43,382 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-28 21:25:43,423 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:43,423 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:43,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-28 21:25:44,508 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-28 21:25:44,592 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:25:45,030 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:45,031 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:45,031 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:45,032 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:45,032 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:48,812 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:25:49,817 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 21:25:49,868 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:49,926 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:49,927 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:49,927 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:49,927 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:25:49,927 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 21:30:09,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 127.0.0.1 2016-07-28 21:30:15,715 - octoprint.server - INFO - Shutting down... 2016-07-28 21:30:16,464 - octoprint.server - INFO - Goodbye! 2016-07-28 22:05:22,962 - octoprint.server - INFO - Starting OctoPrint 1.2.14 (master branch) 2016-07-28 22:05:22,968 - octoprint.plugin.core - INFO - Loading plugins from /home/________/.octoprint/plugins, /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-07-28 22:05:23,073 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-07-28 22:05:23,073 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 7 mixin implementations, 7 hook handlers 2016-07-28 22:05:23,075 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/________/.octoprint/uploads... 2016-07-28 22:05:23,077 - octoprint.filemanager.storage - INFO - ... file metadata for /home/________/.octoprint/uploads initialized successfully. 2016-07-28 22:05:23,083 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-07-28 22:05:23,465 - octoprint.util.pip - INFO - Found pip at /home/________/octopi/OctoPrint/venv/bin/pip, version is 1.5.4 2016-07-28 22:05:23,466 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s) 2016-07-28 22:05:23,467 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/discovery | M33 Fio (1.2) = /home/________/octopi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m33fio | Plugin Manager (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/________/octopi/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.2.14-py2.7.egg/octoprint/plugins/virtual_printer 2016-07-28 22:05:23,467 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-07-28 22:05:23,469 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-07-28 22:05:23,470 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/webassets... 2016-07-28 22:05:23,473 - octoprint.server - INFO - Reset webasset folder /home/________/.octoprint/generated/.webassets-cache... 2016-07-28 22:05:23,974 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on blackbeard for SSDP 2016-07-28 22:05:23,979 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-07-28 22:05:23,997 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-07-28 22:05:24,040 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 22:05:24,041 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 22:05:24,060 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5000/'} 2016-07-28 22:05:25,083 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://127.0.0.1:5001/'} 2016-07-28 22:05:32,162 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1 2016-07-28 22:05:32,235 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 22:05:32,268 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 22:05:32,269 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 22:05:32,270 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 22:05:32,271 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing 2016-07-28 22:05:32,271 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured yet or does not exist (currently set to None), Cura will not be selectable for slicing
AttributeError
def deleteTimelapse(filename): if util.is_allowed_file(filename, ["mpg", "mpeg", "mp4"]): timelapse_folder = settings().getBaseFolder("timelapse") full_path = os.path.realpath(os.path.join(timelapse_folder, filename)) if full_path.startswith(timelapse_folder) and os.path.exists(full_path): os.remove(full_path) return getTimelapseData()
def deleteTimelapse(filename): if util.is_allowed_file(filename, ["mpg"]): timelapse_folder = settings().getBaseFolder("timelapse") full_path = os.path.realpath(os.path.join(timelapse_folder, filename)) if full_path.startswith(timelapse_folder) and os.path.exists(full_path): os.remove(full_path) return getTimelapseData()
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def _create_render_start_handler(name, gcode=None): def f(movie): global _job_lock with _job_lock: global current_render_job event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), "movie_prefix": name, } current_render_job = dict(prefix=name) current_render_job.update(event_payload) eventManager().fire(Events.MOVIE_RENDERING, event_payload) return f
def _create_render_start_handler(name, gcode=None): def f(movie): global _job_lock with _job_lock: global current_render_job event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } current_render_job = dict(prefix=name) current_render_job.update(event_payload) eventManager().fire(Events.MOVIE_RENDERING, event_payload) return f
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def f(movie): global _job_lock with _job_lock: global current_render_job event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), "movie_prefix": name, } current_render_job = dict(prefix=name) current_render_job.update(event_payload) eventManager().fire(Events.MOVIE_RENDERING, event_payload)
def f(movie): global _job_lock with _job_lock: global current_render_job event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } current_render_job = dict(prefix=name) current_render_job.update(event_payload) eventManager().fire(Events.MOVIE_RENDERING, event_payload)
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def _create_render_success_handler(name, gcode=None): def f(movie): delete_unrendered_timelapse(name) event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), "movie_prefix": name, } eventManager().fire(Events.MOVIE_DONE, event_payload) return f
def _create_render_success_handler(name, gcode=None): def f(movie): delete_unrendered_timelapse(name) event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } eventManager().fire(Events.MOVIE_DONE, event_payload) return f
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def f(movie): delete_unrendered_timelapse(name) event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), "movie_prefix": name, } eventManager().fire(Events.MOVIE_DONE, event_payload)
def f(movie): delete_unrendered_timelapse(name) event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } eventManager().fire(Events.MOVIE_DONE, event_payload)
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def _create_render_fail_handler(name, gcode=None): def f(movie, returncode=255, stdout="Unknown error", stderr="Unknown error"): event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), "movie_prefix": name, } payload = dict(event_payload) payload.update(dict(returncode=returncode, error=stderr)) eventManager().fire(Events.MOVIE_FAILED, payload) return f
def _create_render_fail_handler(name, gcode=None): def f(movie, returncode=255, stdout="Unknown error", stderr="Unknown error"): event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } payload = dict(event_payload) payload.update(dict(returncode=returncode, error=stderr)) eventManager().fire(Events.MOVIE_FAILED, payload) return f
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def f(movie, returncode=255, stdout="Unknown error", stderr="Unknown error"): event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), "movie_prefix": name, } payload = dict(event_payload) payload.update(dict(returncode=returncode, error=stderr)) eventManager().fire(Events.MOVIE_FAILED, payload)
def f(movie, returncode=255, stdout="Unknown error", stderr="Unknown error"): event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } payload = dict(event_payload) payload.update(dict(returncode=returncode, error=stderr)) eventManager().fire(Events.MOVIE_FAILED, payload)
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def _create_render_always_handler(name, gcode=None): def f(movie): global current_render_job global _job_lock with _job_lock: current_render_job = None return f
def _create_render_always_handler(name, gcode=None): def f(movie): global current_render_job current_render_job = None return f
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def f(movie): global current_render_job global _job_lock with _job_lock: current_render_job = None
def f(movie): global current_render_job current_render_job = None
https://github.com/OctoPrint/OctoPrint/issues/1320
2016-04-28 23:25:38,056 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:25:38,724 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:42,458 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-28 23:25:42,744 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:43,966 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:45,167 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:46,327 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:47,821 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:48,948 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:50,105 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:25:51,110 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:26:25,915 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-28 23:26:35,441 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-28 23:26:36,431 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-28 23:26:36,786 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-28 23:26:38,122 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-28 23:27:33,461 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:27:34,732 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:27:38,340 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 13] Permission denied 2016-04-28 23:28:25,508 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:33:53,952 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:35:52,922 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:36:46,290 - octoprint.timelapse - ERROR - Could not render movie due to unknown error Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/timelapse.py", line 646, in _render p = sarge.run(command_str, stdout=sarge.Capture(), stderr=sarge.Capture()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1411, in run p.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1040, in run self.run_node(node, input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1136, in run_node result = getattr(self, method)(node, input, async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 1282, in run_command_node node.cmd.run(input=input, async=async) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 632, in run self.process = p = Popen(self.args, **self.kwargs) File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ errread, errwrite) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/sarge-0.1.4-py2.7.egg/sarge/__init__.py", line 545, in _execute_child super(Popen, self)._execute_child(args, executable, preexec, *rest) File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child raise child_exception OSError: [Errno 8] Exec format error 2016-04-28 23:40:23,289 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-28 23:40:23,487 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-28 23:43:39,499 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/timelapsetest_20160428234108.mp4 (127.0.0.1) HTTPServerRequest(protocol='http', host='10.0.0.131', method='GET', uri='/downloads/timelapse/timelapsetest_20160428234108.mp4', version='HTTP/1.1', remote_ip='127.0.0.1', headers={'Accept-Language': 'en-US,en;q=0.8,en-AU;q=0.6', 'Accept-Encoding': 'gzip, deflate, sdch', 'X-Forwarded-For': '10.0.0.110', 'Host': '10.0.0.131', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36', 'Dnt': '1', 'Connection': 'close', 'Referer': 'http://10.0.0.131/', 'Cookie': 'remember_token=admin|f14580dd871633c5bf65bf1aa2819e690fc447b4; session=.eJxNjUELgjAcxb9K_M8SGHoZeAmtkxuIKPMyls6crlVuI0z87pVdPLzL7_F7bwbWjsJ0gFqujPCAyQbQDLsLIMD54OO-9tOYhrhPDiQ-DumbBuScSdon4S847xSJrxEsHshGaCvttOfOdsxODwFIO6U2zWadlpnlZbCazohxfQbe3KSGPzHCGHnXW6kulK0K_CQnHFav6CsvHzEFP5o.CgOk9g.bIlbTQl7RMpGTs9uLmM6Tr3_AyQ', 'Upgrade-Insecure-Requests': '1'}) Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 1334, in _execute result = yield result File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 109, in result raise_exc_info(self._exc_info) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 620, in run yielded = self.gen.throw(*sys.exc_info()) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/web.py", line 2172, in get yield self.flush() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/gen.py", line 617, in run value = future.result() File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/tornado-4.0.1-py2.7-linux-armv7l.egg/tornado/concurrent.py", line 111, in result raise self._exception StreamClosedError 2016-04-28 23:43:39,523 - tornado.general - ERROR - Cannot send error response after headers written 2016-04-29 00:10:50,602 - octoprint.server - INFO - Shutting down... 2016-04-29 00:10:50,674 - octoprint.server - INFO - Goodbye! 2016-04-29 00:11:08,249 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 00:11:08,310 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 00:11:08,861 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 00:11:08,862 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 00:11:09,031 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 00:11:09,075 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 00:11:12,299 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 00:11:12,526 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 00:11:12,536 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 00:11:12,884 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 00:11:12,886 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 00:11:12,889 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 00:11:12,903 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 00:11:12,924 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 00:11:14,009 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from http://plugins.octoprint.org/plugins.json 2016-04-29 00:11:14,069 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 00:11:14,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP 2016-04-29 00:11:14,090 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 00:11:14,256 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 00:11:23,172 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:17:03,579 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:08,031 - octoprint.server - INFO - Shutting down... 2016-04-29 18:18:08,548 - octoprint.server - INFO - Goodbye! 2016-04-29 18:18:25,543 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 18:18:25,606 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:18:26,164 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:18:26,166 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:18:26,335 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:18:26,378 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:18:29,701 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:18:29,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 18:18:29,907 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:18:30,253 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:18:30,256 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:18:30,258 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:18:30,272 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:18:30,293 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:18:31,197 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:18:31,224 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:18:31,224 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:18:31,243 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:18:31,441 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:18:31,447 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:18:32,403 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:18:39,960 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:18:55,146 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:21:47,970 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:22:30,752 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 18:29:30,362 - octoprint.filemanager.analysis - INFO - Starting analysis of local:timelapsetest.g 2016-04-29 18:29:30,557 - octoprint.plugins.autoselect - INFO - Selecting timelapsetest.g on local that was just uploaded 2016-04-29 18:33:20,218 - octoprint.server - INFO - Shutting down... 2016-04-29 18:33:20,590 - octoprint.server - INFO - Goodbye! 2016-04-29 18:33:24,993 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post0.dev0+g692166f (master branch) 2016-04-29 18:33:25,037 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:33:25,452 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:33:25,453 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:33:25,578 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:33:25,612 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:33:28,544 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:28,743 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:33:28,754 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:33:29,124 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:33:29,126 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:33:29,128 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:33:29,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:33:29,160 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:33:29,945 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:33:29,958 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:33:29,983 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:33:29,987 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:33:30,041 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post0.dev0_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:33:30,207 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:33:40,338 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:33:45,047 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:33:47,687 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:33:48,311 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:33:48,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:52,434 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:33:52,702 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:53,856 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:55,029 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:56,286 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:58,016 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:33:59,192 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:00,444 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:34:01,850 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:39:27,546 - octoprint.server.api - INFO - Performing command: sudo service octoprint restart 2016-04-29 18:40:01,948 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f.dirty (maintenance branch) 2016-04-29 18:40:01,996 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:40:02,436 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:40:02,438 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:40:02,562 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:40:02,598 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:40:05,411 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:05,613 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:40:05,623 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:40:05,966 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:40:05,968 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:40:05,974 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:40:05,980 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:40:06,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:40:06,555 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:40:06,586 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:40:06,591 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:40:06,602 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f.dirty-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:40:06,596 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:40:06,791 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:40:14,563 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:40:19,449 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:40:21,535 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:40:22,523 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:40:22,768 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:26,905 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:40:27,182 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:28,383 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:29,534 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:30,704 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:32,174 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:33,431 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:34,680 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:40:35,747 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 18:44:20,017 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 18:45:27,604 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:57:54,697 - octoprint.server - INFO - Shutting down... 2016-04-29 18:57:55,502 - octoprint.server - INFO - Goodbye! 2016-04-29 18:57:59,773 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 18:57:59,818 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 18:58:00,250 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 18:58:00,252 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 18:58:00,371 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 18:58:00,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 18:58:03,309 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:03,508 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 18:58:03,519 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 18:58:03,526 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 18:58:03,528 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 18:58:03,532 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 18:58:03,536 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 18:58:03,560 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 18:58:03,991 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 18:58:04,020 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 18:58:04,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 18:58:04,037 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 18:58:04,077 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 18:58:04,220 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 18:58:12,402 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 18:58:17,100 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 18:58:17,485 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 18:58:19,740 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 18:58:20,593 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:24,549 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 18:58:24,851 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:26,048 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:27,231 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:28,465 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:29,988 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:31,162 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:32,415 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 18:58:33,475 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:03:41,124 - octoprint.server - INFO - Shutting down... 2016-04-29 19:03:41,465 - octoprint.server - INFO - Goodbye! 2016-04-29 19:03:45,907 - octoprint.server - INFO - Starting OctoPrint 1.2.10.post12+g119f727 (HEAD branch) 2016-04-29 19:03:45,951 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:03:46,380 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:03:46,382 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 13 hook handlers 2016-04-29 19:03:46,496 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:03:46,531 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:03:49,634 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:49,830 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:03:49,841 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:03:49,848 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:03:49,851 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:03:49,859 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:03:49,865 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:03:49,889 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:03:50,422 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.post12_g119f727-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:03:50,428 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:03:50,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:03:50,468 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:03:50,485 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:03:50,649 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:03:52,637 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:03:53,860 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:03:58,229 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:03:58,927 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,181 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:01,774 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:04:02,453 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:04,146 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:05,721 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:04:05,922 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:07,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:08,690 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:04:09,570 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:04:09,833 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:04:13,707 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:04:15,307 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:05:59,822 - octoprint.server - INFO - Shutting down... 2016-04-29 19:06:00,395 - octoprint.server - INFO - Goodbye! 2016-04-29 19:06:19,267 - octoprint.server - INFO - Starting OctoPrint 1.3.0.dev985+g37f754c (devel branch) 2016-04-29 19:06:19,268 - octoprint.server - WARNING - requests/urllib3 will run in an insecure SSL environment. You might see corresponding warnings logged later ("InsecurePlatformWarning"). It is recommended to either update to a Python version >= 2.7.9 or alternatively install PyOpenSSL plus its dependencies. For details see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl 2016-04-29 19:06:19,472 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,279 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:06:21,281 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,420 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:06:21,498 - octoprint.plugin.core - INFO - Found 17 plugin(s) providing 16 mixin implementations, 14 hook handlers 2016-04-29 19:06:21,617 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:06:21,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:06:24,488 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:27,212 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:27,213 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages, --user flag needed => no, virtual env => yes 2016-04-29 19:06:27,407 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:06:27,419 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s) 2016-04-29 19:06:27,425 - octoprint.plugin.core - INFO - 17 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | Core Wizard (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/corewizard | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:06:27,427 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:06:27,437 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:06:27,442 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:06:27,465 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:06:28,153 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.0.dev985_g37f754c-py2.7.egg/octoprint/plugin/__init__.py", line 242, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:06:28,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:06:28,257 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:06:28,295 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:06:28,304 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:06:28,470 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:06:30,766 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:06:30,834 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.0.110: 2016-04-29 19:06:32,203 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:37,556 - octoprint.util.pip - INFO - Using "/home/pi/octoprint/venv/bin/python -m pip" as command to invoke pip 2016-04-29 19:06:37,558 - octoprint.util.pip - INFO - Version of pip is 8.1.1 2016-04-29 19:06:40,460 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:06:44,522 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:06:47,239 - octoprint.util.pip - INFO - pip installs to /home/pi/octoprint/venv/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes 2016-04-29 19:06:47,635 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:48,603 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:06:49,104 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:51,550 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:52,973 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:54,513 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:55,722 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:56,963 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:06:57,971 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:08:49,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:08:51,511 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:30:14,639 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:30:15,828 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:20,825 - octoprint.server - INFO - Shutting down... 2016-04-29 19:32:21,597 - octoprint.server - INFO - Goodbye! 2016-04-29 19:32:27,987 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:32:28,033 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:32:28,068 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:32:28,483 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:32:28,485 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:32:28,610 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:32:28,645 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:32:31,642 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:31,840 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 19:32:31,851 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:32:31,858 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:32:31,859 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:32:31,863 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:32:31,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:32:31,898 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:32:32,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:32:32,640 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:32:32,642 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:32:32,659 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:32:32,682 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:32:32,834 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:32:41,043 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:32:44,020 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:32:44,641 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:32:44,879 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:47,203 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:32:49,279 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:32:49,624 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:50,867 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:52,009 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:53,168 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:54,617 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:55,773 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:57,007 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 19:32:58,102 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:41:36,746 - octoprint.server - INFO - Shutting down... 2016-04-29 19:41:37,058 - octoprint.server - INFO - Goodbye! 2016-04-29 19:41:41,571 - octoprint.server - INFO - Starting OctoPrint 1.2.10.dev52+g692166f (maintenance branch) 2016-04-29 19:41:41,620 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 19:41:41,656 - octoprint.plugin.core - ERROR - Error loading plugin corewizard Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/core.py", line 601, in _import_plugin instance = imp.load_module(key, f, filename, description) File "/home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/corewizard/__init__.py", line 17, in <module> octoprint.plugin.WizardPlugin, AttributeError: 'module' object has no attribute 'WizardPlugin' 2016-04-29 19:41:42,120 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 19:41:42,135 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 15 mixin implementations, 12 hook handlers 2016-04-29 19:41:42,264 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 19:41:42,301 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 19:41:45,559 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 19:41:45,748 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 19:41:45,759 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s) 2016-04-29 19:41:46,098 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/pluginmanager | Printer Stats (1.0.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats | RequestSpinner (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_requestspinner | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugins/virtual_printer | Yamlpatcher (0.1.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_yamlpatcher 2016-04-29 19:41:46,102 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 19:41:46,107 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 19:41:46,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 19:41:46,135 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 19:41:46,679 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 19:41:46,690 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 19:41:46,719 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 19:41:46,728 - octoprint.plugins.stats - INFO - Printer Stats 2016-04-29 19:41:46,758 - octoprint.plugin - ERROR - Error while calling plugin stats Traceback (most recent call last): File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/OctoPrint-1.2.10.dev52_g692166f-py2.7.egg/octoprint/plugin/__init__.py", line 204, in call_plugin result = getattr(plugin, method)(*args, **kwargs) File "/home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_stats/__init__.py", line 515, in on_event self.statDB.execute(sql) AttributeError: 'StatsPlugin' object has no attribute 'statDB' 2016-04-29 19:41:46,910 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 19:41:55,022 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 19:41:57,392 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:41:58,003 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 19:42:00,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 19:57:55,157 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 19:58:42,495 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.110 2016-04-29 19:58:59,756 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110 2016-04-29 19:59:39,637 - octoprint.server - INFO - Shutting down... 2016-04-29 19:59:39,976 - octoprint.server - INFO - Goodbye! 2016-04-29 20:12:33,853 - octoprint.server - INFO - Starting OctoPrint 1.2.10 (master branch) 2016-04-29 20:12:33,900 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:12:34,009 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:12:34,010 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 2 hook handlers 2016-04-29 20:12:34,132 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:12:34,166 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:12:34,334 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:12:37,213 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:12:37,218 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:12:37,222 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.10-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:12:37,224 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:12:37,228 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:12:37,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:12:37,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:12:38,011 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:12:38,024 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:12:38,048 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:12:38,138 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:12:49,027 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:12:51,110 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:12:53,231 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:14:20,314 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:14:40,160 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:17:36,830 - octoprint.server - INFO - Shutting down... 2016-04-29 20:17:37,457 - octoprint.server - INFO - Goodbye! 2016-04-29 20:17:42,200 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:17:42,243 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:17:42,353 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:17:42,355 - octoprint.plugin.core - INFO - Found 5 plugin(s) providing 4 mixin implementations, 3 hook handlers 2016-04-29 20:17:42,472 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:17:42,507 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:17:42,538 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it 2016-04-29 20:17:45,678 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:17:45,684 - octoprint.plugin.core - INFO - Initialized 4 plugin implementation(s) 2016-04-29 20:17:45,688 - octoprint.plugin.core - INFO - 5 plugin(s) registered with the system: | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:17:45,690 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:17:45,698 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:17:45,702 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:17:45,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:17:46,315 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:17:46,333 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:17:46,359 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:17:46,451 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:17:55,619 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:17:59,448 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:18:03,251 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:18:09,115 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:18:12,698 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:24:16,743 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:24:22,182 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:27:22,447 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin autoselect 2016-04-29 20:27:22,448 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:22,536 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:22,538 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:27:51,248 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin customControl 2016-04-29 20:27:51,250 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:27:51,356 - octoprint.plugin.core - INFO - Found 7 plugin(s) providing 5 mixin implementations, 3 hook handlers 2016-04-29 20:27:51,358 - octoprint.plugin.core - INFO - 7 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:37,613 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin editorcollection 2016-04-29 20:28:37,614 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:28:37,720 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:28:37,722 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:28:38,106 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:28:42,002 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:28:42,037 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:29:08,055 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_marlin 2016-04-29 20:29:08,057 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:08,150 - octoprint.plugin.core - INFO - Found 9 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:08,152 - octoprint.plugin.core - INFO - 9 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:29:48,252 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin eeprom_repetier 2016-04-29 20:29:48,253 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:29:48,340 - octoprint.plugin.core - INFO - Found 10 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:29:48,342 - octoprint.plugin.core - INFO - 10 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:30:21,645 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin navbartemp 2016-04-29 20:30:21,647 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:30:21,733 - octoprint.plugin.core - INFO - Found 11 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:30:21,736 - octoprint.plugin.core - INFO - 11 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:14,366 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin systemcommandeditor 2016-04-29 20:32:14,368 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:32:14,466 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:32:14,468 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:32:49,191 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:32:53,561 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:34:37,348 - octoprint.plugin.core - WARNING - Trying to mark an unknown plugin ScreenSquish 2016-04-29 20:34:37,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:34:37,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 6 mixin implementations, 5 hook handlers 2016-04-29 20:34:37,453 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | !Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | !EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | !EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | !Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | !ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | !System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:16,231 - octoprint.server.api - INFO - Performing command: sudo shutdown -r now 2016-04-29 20:35:17,608 - octoprint.server - INFO - Shutting down... 2016-04-29 20:35:17,975 - octoprint.server - INFO - Goodbye! 2016-04-29 20:35:35,331 - octoprint.server - INFO - Starting OctoPrint 1.2.11.dev12+g119f727 (maintenance branch) 2016-04-29 20:35:35,391 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-04-29 20:35:35,804 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available 2016-04-29 20:35:35,806 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 10 hook handlers 2016-04-29 20:35:35,971 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-04-29 20:35:36,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-04-29 20:35:36,071 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-04-29 20:35:39,451 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:35:39,457 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s) 2016-04-29 20:35:39,466 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system: | Autoselect Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_autoselect | !CuraEngine (<= 15.04) (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/cura | Custom Control Editor (0.2.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_customControl | Discovery (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/discovery | Editor Collection (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_editorcollection | EEPROM Marlin Editor Plugin (0.1.0) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin | EEPROM Repetier Editor Plugin (0.1.2) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_repetier | Navbar Temperature Plugin (0.8) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_navbartemp | Plugin Manager (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/pluginmanager | ScreenSquish (0.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_ScreenSquish | Software Update (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/softwareupdate | System Command Editor (0.3.1) = /home/pi/octoprint/venv/local/lib/python2.7/site-packages/octoprint_systemcommandeditor | Virtual Printer (bundled) = /home/pi/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.2.11.dev12_g119f727-py2.7.egg/octoprint/plugins/virtual_printer 2016-04-29 20:35:39,469 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-04-29 20:35:39,480 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-04-29 20:35:39,485 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-04-29 20:35:39,510 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-04-29 20:35:40,471 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on mendel90 for SSDP 2016-04-29 20:35:40,491 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-04-29 20:35:40,514 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 2016-04-29 20:35:40,616 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://mendel90.lan/'} 2016-04-29 20:35:48,734 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:35:49,149 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:35:49,236 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:04,552 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:05,444 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131/'} 2016-04-29 20:36:08,816 - octoprint.util.pip - INFO - Found pip at /home/pi/octoprint/venv/bin/pip, version is 8.1.1 2016-04-29 20:36:09,280 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:09,379 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.0.131:5000/'} 2016-04-29 20:36:10,873 - py.warnings - WARNING - /home/pi/octoprint/venv/local/lib/python2.7/site-packages/requests-2.7.0-py2.7.egg/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning 2016-04-29 20:36:13,048 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk 2016-04-29 20:36:13,236 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://raspberrypi.lan/'} 2016-04-29 20:36:14,898 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.0.119 2016-04-29 20:36:22,696 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.119 2016-04-29 20:36:39,385 - octoprint.server.api - INFO - Performing command: /home/pi/scripts/webcam start 2016-04-29 20:44:20,662 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.0.110
OSError
def delete_unrendered_timelapse(name): global _cleanup_lock basedir = settings().getBaseFolder("timelapse_tmp") with _cleanup_lock: for filename in os.listdir(basedir): try: if fnmatch.fnmatch(filename, "{}*.jpg".format(name)): os.remove(os.path.join(basedir, filename)) except: if logging.getLogger(__name__).isEnabledFor(logging.DEBUG): logging.getLogger(__name__).exception( "Error while processing file {} during cleanup".format(filename) )
def delete_unrendered_timelapse(name): basedir = settings().getBaseFolder("timelapse_tmp") for filename in os.listdir(basedir): try: if fnmatch.fnmatch(filename, "{}*.jpg".format(name)): os.remove(os.path.join(basedir, filename)) except: logging.getLogger(__name__).exception( "Error while processing file {} during cleanup".format(filename) )
https://github.com/OctoPrint/OctoPrint/issues/1326
Enter file 2016-05-05 03:39:33,018 - octoprint.server - INFO - Starting OctoPrint 1.2.11 (master branch) 2016-05-05 03:39:33,038 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-05-05 03:39:33,577 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 6 mixin implementations, 3 hook handlers 2016-05-05 03:39:33,582 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-05-05 03:39:33,599 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-05-05 03:39:33,617 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-05-05 03:39:35,134 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-05-05 03:39:35,141 - octoprint.plugin.core - INFO - Initialized 6 plugin implementation(s) 2016-05-05 03:39:35,287 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/virtual_printer 2016-05-05 03:39:35,288 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-05-05 03:39:35,293 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-05-05 03:39:35,295 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-05-05 03:39:35,304 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-05-05 03:39:35,579 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2016-05-05 03:39:35,588 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2016-05-05 03:39:35,590 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2016-05-05 03:39:35,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-05-05 03:39:35,621 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-05-05 03:39:35,688 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local/'} 2016-05-05 03:39:37,815 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.152 2016-05-05 03:39:38,188 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2 2016-05-05 03:39:41,223 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://192.168.1.7/'} 2016-05-05 03:39:43,082 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.7/'} 2016-05-05 03:43:00,186 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2 2016-05-05 04:01:49,483 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2 2016-05-05 04:02:43,676 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-555.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-555.jpg' 2016-05-05 04:02:43,682 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-198.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-198.jpg' 2016-05-05 04:02:43,683 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-235.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-235.jpg' 2016-05-05 04:02:43,684 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-611.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-611.jpg' 2016-05-05 04:02:43,686 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-206.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-206.jpg' 2016-05-05 04:02:43,687 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-115.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-115.jpg' 2016-05-05 04:02:43,689 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-7.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-7.jpg' 2016-05-05 04:02:43,690 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-375.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-375.jpg' 2016-05-05 04:02:43,691 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-177.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-177.jpg' 2016-05-05 04:02:43,693 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-492.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-492.jpg' 2016-05-05 04:02:43,695 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-518.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-518.jpg' 2016-05-05 04:02:43,696 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-323.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-323.jpg' 2016-05-05 04:02:43,697 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-102.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-102.jpg' 2016-05-05 04:02:43,699 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-238.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-238.jpg' 2016-05-05 04:02:43,702 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-190.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-190.jpg' 2016-05-05 04:02:43,703 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-243.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-243.jpg' 2016-05-05 04:02:43,704 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-503.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-503.jpg' 2016-05-05 04:02:43,705 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-74.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-74.jpg' 2016-05-05 04:02:43,707 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-271.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-271.jpg' 2016-05-05 04:02:43,708 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-310.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-310.jpg' 2016-05-05 04:02:43,709 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-576.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-576.jpg' 2016-05-05 04:02:43,711 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-553.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-553.jpg' 2016-05-05 04:02:43,712 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-171.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-171.jpg' 2016-05-05 04:02:43,713 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-428.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-428.jpg' 2016-05-05 04:02:43,715 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-429.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-429.jpg' 2016-05-05 04:02:43,716 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-220.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-220.jpg' 2016-05-05 04:02:43,718 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-76.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-76.jpg' 2016-05-05 04:02:43,719 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-584.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-584.jpg' 2016-05-05 04:02:43,721 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-373.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-373.jpg' 2016-05-05 04:02:43,722 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-87.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-87.jpg' 2016-05-05 04:02:43,723 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-29.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-29.jpg' 2016-05-05 04:02:43,725 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-378.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-378.jpg' 2016-05-05 04:02:43,726 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-23.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-23.jpg' 2016-05-05 04:02:43,727 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-210.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-210.jpg' 2016-05-05 04:02:43,728 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-582.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-582.jpg' 2016-05-05 04:02:43,730 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-561.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-561.jpg' 2016-05-05 04:02:43,731 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-192.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-192.jpg' 2016-05-05 04:02:43,733 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-578.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-578.jpg' 2016-05-05 04:02:43,734 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-509.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-509.jpg' 2016-05-05 04:02:43,736 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-387.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-387.jpg' 2016-05-05 04:02:43,737 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-306.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-306.jpg' 2016-05-05 04:02:43,738 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-216.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-216.jpg' 2016-05-05 04:02:43,740 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-187.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-187.jpg' 2016-05-05 04:02:43,741 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-119.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-119.jpg' 2016-05-05 04:02:43,742 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-330.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-330.jpg' 2016-05-05 04:02:43,744 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-275.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-275.jpg' 2016-05-05 04:02:43,745 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-285.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-285.jpg' 2016-05-05 04:02:43,746 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-549.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-549.jpg' 2016-05-05 04:02:43,747 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-401.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-401.jpg' 2016-05-05 04:02:43,749 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-337.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-337.jpg' 2016-05-05 04:02:43,750 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-176.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-176.jpg' 2016-05-05 04:02:43,751 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-20.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-20.jpg' 2016-05-05 04:02:43,753 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-72.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-72.jpg' 2016-05-05 04:02:43,755 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-124.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-124.jpg' 2016-05-05 04:02:43,756 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-230.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-230.jpg' 2016-05-05 04:02:43,757 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-329.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-329.jpg' 2016-05-05 04:02:43,759 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-22.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-22.jpg' 2016-05-05 04:02:43,760 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-510.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-510.jpg' 2016-05-05 04:02:43,762 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-180.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-180.jpg' 2016-05-05 04:02:43,763 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-466.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-466.jpg' 2016-05-05 04:02:43,764 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-219.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-219.jpg' 2016-05-05 04:02:43,766 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-118.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-118.jpg' 2016-05-05 04:02:43,767 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-246.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-246.jpg' 2016-05-05 04:02:43,768 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-52.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-52.jpg' 2016-05-05 04:02:43,770 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-255.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-255.jpg' 2016-05-05 04:02:43,771 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-441.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-441.jpg' 2016-05-05 04:02:43,772 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-360.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-360.jpg' 2016-05-05 04:02:43,773 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-459.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-459.jpg' 2016-05-05 04:02:43,774 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-129.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-129.jpg' 2016-05-05 04:02:43,776 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-191.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-191.jpg' 2016-05-05 04:02:43,778 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-196.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-196.jpg' 2016-05-05 04:02:43,779 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-248.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-248.jpg' 2016-05-05 04:02:43,781 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-44.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-44.jpg' 2016-05-05 04:02:43,783 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-400.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-400.jpg' 2016-05-05 04:02:43,784 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-580.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-580.jpg' 2016-05-05 04:02:43,785 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-15.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-15.jpg' 2016-05-05 04:02:43,787 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-524.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-524.jpg' 2016-05-05 04:02:43,788 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-297.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-297.jpg' 2016-05-05 04:02:43,790 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-218.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-218.jpg' 2016-05-05 04:02:43,791 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-314.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-314.jpg' 2016-05-05 04:02:43,792 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-168.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-168.jpg' 2016-05-05 04:02:43,794 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-66.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-66.jpg' 2016-05-05 04:02:43,796 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-155.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-155.jpg' 2016-05-05 04:02:43,797 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-96.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-96.jpg' 2016-05-05 04:02:43,798 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-486.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-486.jpg' 2016-05-05 04:02:43,800 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-586.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-586.jpg' 2016-05-05 04:02:43,801 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-601.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-601.jpg' 2016-05-05 04:02:43,803 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-274.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-274.jpg' 2016-05-05 04:02:43,804 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-253.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-253.jpg' 2016-05-05 04:02:43,805 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-298.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-298.jpg' 2016-05-05 04:02:43,807 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-307.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-307.jpg' 2016-05-05 04:02:43,808 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-522.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-522.jpg' 2016-05-05 04:02:43,809 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-564.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-564.jpg' 2016-05-05 04:02:43,811 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-410.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-410.jpg' 2016-05-05 04:02:43,812 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-138.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-138.jpg' 2016-05-05 04:02:43,813 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-201.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-201.jpg' 2016-05-05 04:02:43,815 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-425.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-425.jpg' 2016-05-05 04:02:43,817 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-5.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-5.jpg' 2016-05-05 04:02:43,818 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-61.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-61.jpg' 2016-05-05 04:02:43,819 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-81.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-81.jpg' 2016-05-05 04:02:43,821 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-199.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-199.jpg' 2016-05-05 04:02:43,822 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-358.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-358.jpg' 2016-05-05 04:02:43,823 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-194.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-194.jpg' 2016-05-05 04:02:43,825 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-423.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-423.jpg' 2016-05-05 04:02:43,826 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-32.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-32.jpg' 2016-05-05 04:02:43,827 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-390.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-390.jpg' 2016-05-05 04:02:43,829 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-320.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-320.jpg' 2016-05-05 04:02:43,830 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-300.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-300.jpg' 2016-05-05 04:02:43,831 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-416.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-416.jpg' 2016-05-05 04:02:43,833 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-113.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-113.jpg' 2016-05-05 04:02:43,834 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-461.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-461.jpg' 2016-05-05 04:02:43,835 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-464.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-464.jpg' 2016-05-05 04:02:43,836 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-442.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-442.jpg' 2016-05-05 04:02:43,837 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-346.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-346.jpg' 2016-05-05 04:02:43,838 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-482.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-482.jpg' 2016-05-05 04:02:43,839 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-575.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-575.jpg' 2016-05-05 04:02:43,840 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-533.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-533.jpg' 2016-05-05 04:02:43,841 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-221.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-221.jpg' 2016-05-05 04:02:43,842 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-614.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-614.jpg' 2016-05-05 04:02:43,843 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-133.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-133.jpg' 2016-05-05 04:02:43,844 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-267.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-267.jpg' 2016-05-05 04:02:43,845 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-79.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-79.jpg' 2016-05-05 04:02:43,846 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-172.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-172.jpg' 2016-05-05 04:02:43,847 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-397.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-397.jpg' 2016-05-05 04:02:43,848 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-153.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-153.jpg' 2016-05-05 04:02:43,850 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-436.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-436.jpg' 2016-05-05 04:02:43,851 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-103.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-103.jpg' 2016-05-05 04:02:43,852 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-368.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-368.jpg' 2016-05-05 04:02:43,853 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-592.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-592.jpg' 2016-05-05 04:02:43,854 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-241.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-241.jpg' 2016-05-05 04:02:43,856 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-392.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-392.jpg' 2016-05-05 04:02:43,857 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-339.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-339.jpg' 2016-05-05 04:02:43,858 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-535.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-535.jpg' 2016-05-05 04:02:43,859 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-451.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-451.jpg' 2016-05-05 04:02:43,860 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-157.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-157.jpg' 2016-05-05 04:02:43,861 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-446.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-446.jpg' 2016-05-05 04:02:43,862 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-163.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-163.jpg' 2016-05-05 04:02:43,863 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-33.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-33.jpg' 2016-05-05 04:02:43,864 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-348.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-348.jpg' 2016-05-05 04:02:43,865 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-17.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-17.jpg' 2016-05-05 04:02:43,866 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-78.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-78.jpg' 2016-05-05 04:02:43,867 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-259.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-259.jpg' 2016-05-05 04:02:43,869 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-338.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-338.jpg' 2016-05-05 04:02:43,870 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-88.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-88.jpg' 2016-05-05 04:02:43,870 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-24.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-24.jpg' 2016-05-05 04:02:43,871 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-370.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-370.jpg' 2016-05-05 04:02:43,872 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-208.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-208.jpg' 2016-05-05 04:02:43,873 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-150.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-150.jpg' 2016-05-05 04:02:43,874 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-90.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-90.jpg' 2016-05-05 04:02:43,875 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-280.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-280.jpg' 2016-05-05 04:02:43,876 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-224.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-224.jpg' 2016-05-05 04:02:43,877 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-499.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-499.jpg' 2016-05-05 04:02:43,878 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-359.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-359.jpg' 2016-05-05 04:02:43,879 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-341.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-341.jpg' 2016-05-05 04:02:43,880 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-302.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-302.jpg' 2016-05-05 04:02:43,881 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-197.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-197.jpg' 2016-05-05 04:02:43,883 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-268.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-268.jpg' 2016-05-05 04:02:43,884 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-430.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-430.jpg' 2016-05-05 04:02:43,885 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-349.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-349.jpg' 2016-05-05 04:02:43,886 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-110.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-110.jpg' 2016-05-05 04:02:43,887 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-545.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-545.jpg' 2016-05-05 04:02:43,888 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-38.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-38.jpg' 2016-05-05 04:02:43,889 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-473.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-473.jpg' 2016-05-05 04:02:43,890 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-604.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-604.jpg' 2016-05-05 04:02:43,891 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-556.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-556.jpg' 2016-05-05 04:02:43,892 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-581.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-581.jpg' 2016-05-05 04:02:43,893 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-34.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-34.jpg' 2016-05-05 04:02:43,895 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-328.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-328.jpg' 2016-05-05 04:02:43,896 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-334.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-334.jpg' 2016-05-05 04:02:43,897 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-50.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-50.jpg' 2016-05-05 04:02:43,898 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-250.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-250.jpg' 2016-05-05 04:02:43,899 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-340.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-340.jpg' 2016-05-05 04:02:43,900 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-183.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-183.jpg' 2016-05-05 04:02:43,901 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-344.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-344.jpg' 2016-05-05 04:02:43,902 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-166.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-166.jpg' 2016-05-05 04:02:43,903 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-53.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-53.jpg' 2016-05-05 04:02:43,904 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-421.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-421.jpg' 2016-05-05 04:02:43,905 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-493.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-493.jpg' 2016-05-05 04:02:43,906 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-111.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-111.jpg' 2016-05-05 04:02:43,907 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-532.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-532.jpg' 2016-05-05 04:02:43,907 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-299.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-299.jpg' 2016-05-05 04:02:43,909 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-244.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-244.jpg' 2016-05-05 04:02:43,910 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-585.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-585.jpg' 2016-05-05 04:02:43,911 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-170.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-170.jpg' 2016-05-05 04:02:43,912 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-354.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-354.jpg' 2016-05-05 04:02:43,913 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-59.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-59.jpg' 2016-05-05 04:02:43,914 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-579.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-579.jpg' 2016-05-05 04:02:43,915 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-386.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-386.jpg' 2016-05-05 04:02:43,916 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-126.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-126.jpg' 2016-05-05 04:02:43,917 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-226.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-226.jpg' 2016-05-05 04:02:43,918 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-71.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-71.jpg' 2016-05-05 04:02:43,919 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-89.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-89.jpg' 2016-05-05 04:02:43,921 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-457.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-457.jpg' 2016-05-05 04:02:43,922 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-41.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-41.jpg' 2016-05-05 04:02:43,923 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-395.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-395.jpg' 2016-05-05 04:02:43,924 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-294.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-294.jpg' 2016-05-05 04:02:43,925 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-263.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-263.jpg' 2016-05-05 04:02:43,926 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-569.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-569.jpg' 2016-05-05 04:02:43,927 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-108.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-108.jpg' 2016-05-05 04:02:43,928 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-46.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-46.jpg' 2016-05-05 04:02:43,929 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-502.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-502.jpg' 2016-05-05 04:02:43,930 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-36.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-36.jpg' 2016-05-05 04:02:43,931 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-456.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-456.jpg' 2016-05-05 04:02:43,932 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-26.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-26.jpg' 2016-05-05 04:02:43,933 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-438.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-438.jpg' 2016-05-05 04:02:43,934 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-431.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-431.jpg' 2016-05-05 04:02:43,935 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-251.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-251.jpg' 2016-05-05 04:02:43,936 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-605.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-605.jpg' 2016-05-05 04:02:43,937 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-325.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-325.jpg' 2016-05-05 04:02:43,938 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-369.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-369.jpg' 2016-05-05 04:02:43,939 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-222.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-222.jpg' 2016-05-05 04:02:43,941 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-471.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-471.jpg' 2016-05-05 04:02:43,941 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-309.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-309.jpg' 2016-05-05 04:02:43,942 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-227.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-227.jpg' 2016-05-05 04:02:43,943 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-415.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-415.jpg' 2016-05-05 04:02:43,945 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-200.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-200.jpg' 2016-05-05 04:02:43,945 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-432.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-432.jpg' 2016-05-05 04:02:43,946 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-407.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-407.jpg' 2016-05-05 04:02:43,947 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-154.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-154.jpg' 2016-05-05 04:02:43,948 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-283.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-283.jpg' 2016-05-05 04:02:43,949 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-467.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-467.jpg' 2016-05-05 04:02:43,951 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-412.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-412.jpg' 2016-05-05 04:02:43,952 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-419.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-419.jpg' 2016-05-05 04:02:43,953 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-552.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-552.jpg' 2016-05-05 04:02:43,954 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-95.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-95.jpg' 2016-05-05 04:02:43,955 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-470.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-470.jpg' 2016-05-05 04:02:43,956 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-332.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-332.jpg' 2016-05-05 04:02:43,957 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-139.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-139.jpg' 2016-05-05 04:02:43,958 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-537.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-537.jpg' 2016-05-05 04:02:43,958 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-554.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-554.jpg' 2016-05-05 04:02:43,960 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-142.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-142.jpg' 2016-05-05 04:02:43,961 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-381.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-381.jpg' 2016-05-05 04:02:43,962 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-10.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-10.jpg' 2016-05-05 04:02:43,962 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-56.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-56.jpg' 2016-05-05 04:02:43,963 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-2.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-2.jpg' 2016-05-05 04:02:43,965 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-121.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-121.jpg' 2016-05-05 04:02:43,966 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-202.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-202.jpg' 2016-05-05 04:02:43,967 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-63.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-63.jpg' 2016-05-05 04:02:43,968 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-483.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-483.jpg' 2016-05-05 04:02:43,969 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-526.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-526.jpg' 2016-05-05 04:02:43,970 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-454.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-454.jpg' 2016-05-05 04:02:43,971 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-292.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-292.jpg' 2016-05-05 04:02:43,972 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-195.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-195.jpg' 2016-05-05 04:02:43,973 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-379.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-379.jpg' 2016-05-05 04:02:43,974 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-336.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-336.jpg' 2016-05-05 04:02:43,975 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-99.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-99.jpg' 2016-05-05 04:02:43,975 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-134.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-134.jpg' 2016-05-05 04:02:43,976 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-602.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-602.jpg' 2016-05-05 04:02:43,977 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-563.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-563.jpg' 2016-05-05 04:02:43,978 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-527.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-527.jpg' 2016-05-05 04:02:43,979 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-572.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-572.jpg' 2016-05-05 04:02:43,981 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-51.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-51.jpg' 2016-05-05 04:02:43,982 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-353.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-353.jpg' 2016-05-05 04:02:43,983 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-109.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-109.jpg' 2016-05-05 04:02:43,984 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-560.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-560.jpg' 2016-05-05 04:02:43,985 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-551.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-551.jpg' 2016-05-05 04:02:43,986 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-504.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-504.jpg' 2016-05-05 04:02:43,987 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-308.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-308.jpg' 2016-05-05 04:02:43,988 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-411.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-411.jpg' 2016-05-05 04:02:43,989 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-149.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-149.jpg' 2016-05-05 04:02:43,990 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-391.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-391.jpg' 2016-05-05 04:02:43,991 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-534.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-534.jpg' 2016-05-05 04:02:43,992 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-165.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-165.jpg' 2016-05-05 04:02:43,993 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-476.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-476.jpg' 2016-05-05 04:02:43,994 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-97.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-97.jpg' 2016-05-05 04:02:43,995 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-3.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-3.jpg' 2016-05-05 04:02:43,997 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-460.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-460.jpg' 2016-05-05 04:02:43,998 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-519.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-519.jpg' 2016-05-05 04:02:43,998 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-64.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-64.jpg' 2016-05-05 04:02:44,000 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-261.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-261.jpg' 2016-05-05 04:02:44,001 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-158.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-158.jpg' 2016-05-05 04:02:44,002 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-343.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-343.jpg' 2016-05-05 04:02:44,003 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-146.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-146.jpg' 2016-05-05 04:02:44,004 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-45.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-45.jpg' 2016-05-05 04:02:44,005 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-565.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-565.jpg' 2016-05-05 04:02:44,006 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-212.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-212.jpg' 2016-05-05 04:02:44,007 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-12.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-12.jpg' 2016-05-05 04:02:44,008 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-409.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-409.jpg' 2016-05-05 04:02:44,009 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-125.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-125.jpg' 2016-05-05 04:02:44,010 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-478.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-478.jpg' 2016-05-05 04:02:44,011 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-106.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-106.jpg' 2016-05-05 04:02:44,012 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-132.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-132.jpg' 2016-05-05 04:02:44,013 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-543.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-543.jpg' 2016-05-05 04:02:44,014 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-608.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-608.jpg' 2016-05-05 04:02:44,015 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-465.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-465.jpg' 2016-05-05 04:02:44,017 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-408.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-408.jpg' 2016-05-05 04:02:44,017 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-540.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-540.jpg' 2016-05-05 04:02:44,018 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-137.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-137.jpg' 2016-05-05 04:02:44,019 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-143.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-143.jpg' 2016-05-05 04:02:44,021 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-54.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-54.jpg' 2016-05-05 04:02:44,021 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-589.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-589.jpg' 2016-05-05 04:02:44,022 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-396.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-396.jpg' 2016-05-05 04:02:44,024 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-231.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-231.jpg' 2016-05-05 04:02:44,025 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-458.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-458.jpg' 2016-05-05 04:02:44,026 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-128.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-128.jpg' 2016-05-05 04:02:44,027 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-566.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-566.jpg' 2016-05-05 04:02:44,028 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-402.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-402.jpg' 2016-05-05 04:02:44,029 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-123.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-123.jpg' 2016-05-05 04:02:44,030 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-304.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-304.jpg' 2016-05-05 04:02:44,031 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-296.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-296.jpg' 2016-05-05 04:02:44,032 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-558.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-558.jpg' 2016-05-05 04:02:44,033 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-276.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-276.jpg' 2016-05-05 04:02:44,034 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-174.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-174.jpg' 2016-05-05 04:02:44,035 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-167.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-167.jpg' 2016-05-05 04:02:44,036 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-249.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-249.jpg' 2016-05-05 04:02:44,037 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-603.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-603.jpg' 2016-05-05 04:02:44,038 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-445.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-445.jpg' 2016-05-05 04:02:44,039 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-484.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-484.jpg' 2016-05-05 04:02:44,040 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-92.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-92.jpg' 2016-05-05 04:02:44,041 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-8.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-8.jpg' 2016-05-05 04:02:44,042 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-104.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-104.jpg' 2016-05-05 04:02:44,043 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-107.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-107.jpg' 2016-05-05 04:02:44,044 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-148.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-148.jpg' 2016-05-05 04:02:44,045 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-178.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-178.jpg' 2016-05-05 04:02:44,046 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-463.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-463.jpg' 2016-05-05 04:02:44,047 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-215.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-215.jpg' 2016-05-05 04:02:44,049 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-70.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-70.jpg' 2016-05-05 04:02:44,050 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-511.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-511.jpg' 2016-05-05 04:02:44,051 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-86.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-86.jpg' 2016-05-05 04:02:44,052 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-85.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-85.jpg' 2016-05-05 04:02:44,053 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-568.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-568.jpg' 2016-05-05 04:02:44,054 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-371.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-371.jpg' 2016-05-05 04:02:44,055 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-475.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-475.jpg' 2016-05-05 04:02:44,056 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-345.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-345.jpg' 2016-05-05 04:02:44,057 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-117.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-117.jpg' 2016-05-05 04:02:44,058 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-91.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-91.jpg' 2016-05-05 04:02:44,059 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-505.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-505.jpg' 2016-05-05 04:02:44,060 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-562.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-562.jpg' 2016-05-05 04:02:44,061 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-520.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-520.jpg' 2016-05-05 04:02:44,062 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-594.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-594.jpg' 2016-05-05 04:02:44,063 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-130.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-130.jpg' 2016-05-05 04:02:44,064 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-240.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-240.jpg' 2016-05-05 04:02:44,065 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-399.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-399.jpg' 2016-05-05 04:02:44,066 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-541.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-541.jpg' 2016-05-05 04:02:44,067 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-477.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-477.jpg' 2016-05-05 04:02:44,069 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-232.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-232.jpg' 2016-05-05 04:02:44,070 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-156.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-156.jpg' 2016-05-05 04:02:44,071 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-209.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-209.jpg' 2016-05-05 04:02:44,072 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-141.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-141.jpg' 2016-05-05 04:02:44,073 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-301.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-301.jpg' 2016-05-05 04:02:44,074 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-376.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-376.jpg' 2016-05-05 04:02:44,075 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-217.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-217.jpg' 2016-05-05 04:02:44,076 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-315.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-315.jpg' 2016-05-05 04:02:44,076 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-577.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-577.jpg' 2016-05-05 04:02:44,077 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-254.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-254.jpg' 2016-05-05 04:02:44,078 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-488.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-488.jpg' 2016-05-05 04:02:44,078 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-93.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-93.jpg' 2016-05-05 04:02:44,079 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-25.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-25.jpg' 2016-05-05 04:02:44,080 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-47.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-47.jpg' 2016-05-05 04:02:44,081 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-131.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-131.jpg' 2016-05-05 04:02:44,082 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-597.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-597.jpg' 2016-05-05 04:02:44,083 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-204.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-204.jpg' 2016-05-05 04:02:44,084 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-67.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-67.jpg' 2016-05-05 04:02:44,085 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-512.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-512.jpg' 2016-05-05 04:02:44,086 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-546.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-546.jpg' 2016-05-05 04:02:44,087 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-236.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-236.jpg' 2016-05-05 04:02:44,088 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-228.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-228.jpg' 2016-05-05 04:02:44,089 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-363.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-363.jpg' 2016-05-05 04:02:44,091 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-377.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-377.jpg' 2016-05-05 04:02:44,092 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-237.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-237.jpg' 2016-05-05 04:02:44,093 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-452.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-452.jpg' 2016-05-05 04:02:44,094 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-487.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-487.jpg' 2016-05-05 04:02:44,095 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-427.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-427.jpg' 2016-05-05 04:02:44,096 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-286.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-286.jpg' 2016-05-05 04:02:44,097 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-160.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-160.jpg' 2016-05-05 04:02:44,098 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-398.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-398.jpg' 2016-05-05 04:02:44,099 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-472.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-472.jpg' 2016-05-05 04:02:44,100 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-500.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-500.jpg' 2016-05-05 04:02:44,101 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-447.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-447.jpg' 2016-05-05 04:02:44,102 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-474.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-474.jpg' 2016-05-05 04:02:44,103 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-521.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-521.jpg' 2016-05-05 04:02:44,104 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-120.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-120.jpg' 2016-05-05 04:02:44,105 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-42.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-42.jpg' 2016-05-05 04:02:44,106 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-468.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-468.jpg' 2016-05-05 04:02:44,107 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-35.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-35.jpg' 2016-05-05 04:02:44,108 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-364.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-364.jpg' 2016-05-05 04:02:44,109 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-317.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-317.jpg' 2016-05-05 04:02:44,110 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-507.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-507.jpg' 2016-05-05 04:02:44,111 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-260.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-260.jpg' 2016-05-05 04:02:44,112 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-147.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-147.jpg' 2016-05-05 04:02:44,113 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-607.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-607.jpg' 2016-05-05 04:02:44,114 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-4.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-4.jpg' 2016-05-05 04:02:44,116 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-319.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-319.jpg' 2016-05-05 04:02:44,117 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-0.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-0.jpg' 2016-05-05 04:02:44,118 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-374.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-374.jpg' 2016-05-05 04:02:44,119 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-49.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-49.jpg' 2016-05-05 04:02:44,120 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-144.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-144.jpg' 2016-05-05 04:02:44,121 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-82.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-82.jpg' 2016-05-05 04:02:44,122 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-480.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-480.jpg' 2016-05-05 04:02:44,123 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-331.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-331.jpg' 2016-05-05 04:02:44,124 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-352.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-352.jpg' 2016-05-05 04:02:44,125 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-164.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-164.jpg' 2016-05-05 04:02:44,126 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-14.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-14.jpg' 2016-05-05 04:02:44,127 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-27.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-27.jpg' 2016-05-05 04:02:44,128 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-433.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-433.jpg' 2016-05-05 04:02:44,129 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-406.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-406.jpg' 2016-05-05 04:02:44,130 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-303.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-303.jpg' 2016-05-05 04:02:44,131 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-424.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-424.jpg' 2016-05-05 04:02:44,132 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-55.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-55.jpg' 2016-05-05 04:02:44,133 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-57.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-57.jpg' 2016-05-05 04:02:44,134 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-162.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-162.jpg' 2016-05-05 04:02:44,135 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-335.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-335.jpg' contents here
OSError
def delete_old_unrendered_timelapses(): global _cleanup_lock basedir = settings().getBaseFolder("timelapse_tmp") clean_after_days = settings().getInt(["webcam", "cleanTmpAfterDays"]) cutoff = time.time() - clean_after_days * 24 * 60 * 60 prefixes_to_clean = [] with _cleanup_lock: for filename in os.listdir(basedir): try: path = os.path.join(basedir, filename) prefix = _extract_prefix(filename) if prefix is None: # might be an old tmp_00000.jpg kinda frame. we can't # render those easily anymore, so delete that stuff if _old_capture_format_re.match(filename): os.remove(path) continue if prefix in prefixes_to_clean: continue if os.path.getmtime(path) < cutoff: prefixes_to_clean.append(prefix) except: if logging.getLogger(__name__).isEnabledFor(logging.DEBUG): logging.getLogger(__name__).exception( "Error while processing file {} during cleanup".format(filename) ) for prefix in prefixes_to_clean: delete_unrendered_timelapse(prefix) logging.getLogger(__name__).info( "Deleted old unrendered timelapse {}".format(prefix) )
def delete_old_unrendered_timelapses(): basedir = settings().getBaseFolder("timelapse_tmp") clean_after_days = settings().getInt(["webcam", "cleanTmpAfterDays"]) cutoff = time.time() - clean_after_days * 24 * 60 * 60 prefixes_to_clean = [] for filename in os.listdir(basedir): try: path = os.path.join(basedir, filename) prefix = _extract_prefix(filename) if prefix is None: # might be an old tmp_00000.jpg kinda frame. we can't # render those easily anymore, so delete that stuff if _old_capture_format_re.match(filename): os.remove(path) continue if prefix in prefixes_to_clean: continue if os.path.getmtime(path) < cutoff: prefixes_to_clean.append(prefix) except: logging.getLogger(__name__).exception( "Error while processing file {} during cleanup".format(filename) ) for prefix in prefixes_to_clean: delete_unrendered_timelapse(prefix)
https://github.com/OctoPrint/OctoPrint/issues/1326
Enter file 2016-05-05 03:39:33,018 - octoprint.server - INFO - Starting OctoPrint 1.2.11 (master branch) 2016-05-05 03:39:33,038 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-05-05 03:39:33,577 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 6 mixin implementations, 3 hook handlers 2016-05-05 03:39:33,582 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-05-05 03:39:33,599 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-05-05 03:39:33,617 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-05-05 03:39:35,134 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-05-05 03:39:35,141 - octoprint.plugin.core - INFO - Initialized 6 plugin implementation(s) 2016-05-05 03:39:35,287 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/virtual_printer 2016-05-05 03:39:35,288 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-05-05 03:39:35,293 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-05-05 03:39:35,295 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-05-05 03:39:35,304 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-05-05 03:39:35,579 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2016-05-05 03:39:35,588 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2016-05-05 03:39:35,590 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2016-05-05 03:39:35,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-05-05 03:39:35,621 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-05-05 03:39:35,688 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local/'} 2016-05-05 03:39:37,815 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.152 2016-05-05 03:39:38,188 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2 2016-05-05 03:39:41,223 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://192.168.1.7/'} 2016-05-05 03:39:43,082 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.7/'} 2016-05-05 03:43:00,186 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2 2016-05-05 04:01:49,483 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2 2016-05-05 04:02:43,676 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-555.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-555.jpg' 2016-05-05 04:02:43,682 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-198.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-198.jpg' 2016-05-05 04:02:43,683 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-235.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-235.jpg' 2016-05-05 04:02:43,684 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-611.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-611.jpg' 2016-05-05 04:02:43,686 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-206.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-206.jpg' 2016-05-05 04:02:43,687 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-115.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-115.jpg' 2016-05-05 04:02:43,689 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-7.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-7.jpg' 2016-05-05 04:02:43,690 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-375.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-375.jpg' 2016-05-05 04:02:43,691 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-177.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-177.jpg' 2016-05-05 04:02:43,693 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-492.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-492.jpg' 2016-05-05 04:02:43,695 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-518.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-518.jpg' 2016-05-05 04:02:43,696 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-323.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-323.jpg' 2016-05-05 04:02:43,697 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-102.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-102.jpg' 2016-05-05 04:02:43,699 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-238.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-238.jpg' 2016-05-05 04:02:43,702 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-190.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-190.jpg' 2016-05-05 04:02:43,703 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-243.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-243.jpg' 2016-05-05 04:02:43,704 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-503.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-503.jpg' 2016-05-05 04:02:43,705 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-74.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-74.jpg' 2016-05-05 04:02:43,707 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-271.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-271.jpg' 2016-05-05 04:02:43,708 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-310.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-310.jpg' 2016-05-05 04:02:43,709 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-576.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-576.jpg' 2016-05-05 04:02:43,711 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-553.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-553.jpg' 2016-05-05 04:02:43,712 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-171.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-171.jpg' 2016-05-05 04:02:43,713 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-428.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-428.jpg' 2016-05-05 04:02:43,715 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-429.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-429.jpg' 2016-05-05 04:02:43,716 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-220.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-220.jpg' 2016-05-05 04:02:43,718 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-76.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-76.jpg' 2016-05-05 04:02:43,719 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-584.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-584.jpg' 2016-05-05 04:02:43,721 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-373.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-373.jpg' 2016-05-05 04:02:43,722 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-87.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-87.jpg' 2016-05-05 04:02:43,723 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-29.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-29.jpg' 2016-05-05 04:02:43,725 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-378.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-378.jpg' 2016-05-05 04:02:43,726 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-23.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-23.jpg' 2016-05-05 04:02:43,727 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-210.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-210.jpg' 2016-05-05 04:02:43,728 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-582.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-582.jpg' 2016-05-05 04:02:43,730 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-561.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-561.jpg' 2016-05-05 04:02:43,731 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-192.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-192.jpg' 2016-05-05 04:02:43,733 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-578.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-578.jpg' 2016-05-05 04:02:43,734 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-509.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-509.jpg' 2016-05-05 04:02:43,736 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-387.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-387.jpg' 2016-05-05 04:02:43,737 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-306.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-306.jpg' 2016-05-05 04:02:43,738 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-216.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-216.jpg' 2016-05-05 04:02:43,740 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-187.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-187.jpg' 2016-05-05 04:02:43,741 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-119.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-119.jpg' 2016-05-05 04:02:43,742 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-330.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-330.jpg' 2016-05-05 04:02:43,744 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-275.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-275.jpg' 2016-05-05 04:02:43,745 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-285.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-285.jpg' 2016-05-05 04:02:43,746 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-549.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-549.jpg' 2016-05-05 04:02:43,747 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-401.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-401.jpg' 2016-05-05 04:02:43,749 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-337.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-337.jpg' 2016-05-05 04:02:43,750 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-176.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-176.jpg' 2016-05-05 04:02:43,751 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-20.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-20.jpg' 2016-05-05 04:02:43,753 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-72.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-72.jpg' 2016-05-05 04:02:43,755 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-124.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-124.jpg' 2016-05-05 04:02:43,756 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-230.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-230.jpg' 2016-05-05 04:02:43,757 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-329.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-329.jpg' 2016-05-05 04:02:43,759 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-22.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-22.jpg' 2016-05-05 04:02:43,760 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-510.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-510.jpg' 2016-05-05 04:02:43,762 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-180.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-180.jpg' 2016-05-05 04:02:43,763 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-466.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-466.jpg' 2016-05-05 04:02:43,764 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-219.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-219.jpg' 2016-05-05 04:02:43,766 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-118.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-118.jpg' 2016-05-05 04:02:43,767 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-246.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-246.jpg' 2016-05-05 04:02:43,768 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-52.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-52.jpg' 2016-05-05 04:02:43,770 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-255.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-255.jpg' 2016-05-05 04:02:43,771 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-441.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-441.jpg' 2016-05-05 04:02:43,772 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-360.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-360.jpg' 2016-05-05 04:02:43,773 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-459.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-459.jpg' 2016-05-05 04:02:43,774 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-129.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-129.jpg' 2016-05-05 04:02:43,776 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-191.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-191.jpg' 2016-05-05 04:02:43,778 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-196.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-196.jpg' 2016-05-05 04:02:43,779 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-248.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-248.jpg' 2016-05-05 04:02:43,781 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-44.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-44.jpg' 2016-05-05 04:02:43,783 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-400.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-400.jpg' 2016-05-05 04:02:43,784 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-580.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-580.jpg' 2016-05-05 04:02:43,785 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-15.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-15.jpg' 2016-05-05 04:02:43,787 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-524.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-524.jpg' 2016-05-05 04:02:43,788 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-297.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-297.jpg' 2016-05-05 04:02:43,790 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-218.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-218.jpg' 2016-05-05 04:02:43,791 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-314.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-314.jpg' 2016-05-05 04:02:43,792 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-168.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-168.jpg' 2016-05-05 04:02:43,794 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-66.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-66.jpg' 2016-05-05 04:02:43,796 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-155.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-155.jpg' 2016-05-05 04:02:43,797 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-96.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-96.jpg' 2016-05-05 04:02:43,798 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-486.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-486.jpg' 2016-05-05 04:02:43,800 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-586.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-586.jpg' 2016-05-05 04:02:43,801 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-601.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-601.jpg' 2016-05-05 04:02:43,803 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-274.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-274.jpg' 2016-05-05 04:02:43,804 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-253.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-253.jpg' 2016-05-05 04:02:43,805 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-298.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-298.jpg' 2016-05-05 04:02:43,807 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-307.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-307.jpg' 2016-05-05 04:02:43,808 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-522.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-522.jpg' 2016-05-05 04:02:43,809 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-564.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-564.jpg' 2016-05-05 04:02:43,811 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-410.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-410.jpg' 2016-05-05 04:02:43,812 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-138.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-138.jpg' 2016-05-05 04:02:43,813 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-201.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-201.jpg' 2016-05-05 04:02:43,815 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-425.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-425.jpg' 2016-05-05 04:02:43,817 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-5.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-5.jpg' 2016-05-05 04:02:43,818 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-61.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-61.jpg' 2016-05-05 04:02:43,819 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-81.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-81.jpg' 2016-05-05 04:02:43,821 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-199.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-199.jpg' 2016-05-05 04:02:43,822 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-358.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-358.jpg' 2016-05-05 04:02:43,823 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-194.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-194.jpg' 2016-05-05 04:02:43,825 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-423.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-423.jpg' 2016-05-05 04:02:43,826 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-32.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-32.jpg' 2016-05-05 04:02:43,827 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-390.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-390.jpg' 2016-05-05 04:02:43,829 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-320.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-320.jpg' 2016-05-05 04:02:43,830 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-300.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-300.jpg' 2016-05-05 04:02:43,831 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-416.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-416.jpg' 2016-05-05 04:02:43,833 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-113.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-113.jpg' 2016-05-05 04:02:43,834 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-461.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-461.jpg' 2016-05-05 04:02:43,835 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-464.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-464.jpg' 2016-05-05 04:02:43,836 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-442.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-442.jpg' 2016-05-05 04:02:43,837 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-346.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-346.jpg' 2016-05-05 04:02:43,838 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-482.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-482.jpg' 2016-05-05 04:02:43,839 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-575.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-575.jpg' 2016-05-05 04:02:43,840 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-533.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-533.jpg' 2016-05-05 04:02:43,841 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-221.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-221.jpg' 2016-05-05 04:02:43,842 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-614.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-614.jpg' 2016-05-05 04:02:43,843 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-133.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-133.jpg' 2016-05-05 04:02:43,844 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-267.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-267.jpg' 2016-05-05 04:02:43,845 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-79.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-79.jpg' 2016-05-05 04:02:43,846 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-172.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-172.jpg' 2016-05-05 04:02:43,847 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-397.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-397.jpg' 2016-05-05 04:02:43,848 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-153.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-153.jpg' 2016-05-05 04:02:43,850 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-436.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-436.jpg' 2016-05-05 04:02:43,851 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-103.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-103.jpg' 2016-05-05 04:02:43,852 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-368.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-368.jpg' 2016-05-05 04:02:43,853 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-592.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-592.jpg' 2016-05-05 04:02:43,854 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-241.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-241.jpg' 2016-05-05 04:02:43,856 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-392.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-392.jpg' 2016-05-05 04:02:43,857 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-339.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-339.jpg' 2016-05-05 04:02:43,858 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-535.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-535.jpg' 2016-05-05 04:02:43,859 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-451.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-451.jpg' 2016-05-05 04:02:43,860 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-157.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-157.jpg' 2016-05-05 04:02:43,861 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-446.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-446.jpg' 2016-05-05 04:02:43,862 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-163.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-163.jpg' 2016-05-05 04:02:43,863 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-33.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-33.jpg' 2016-05-05 04:02:43,864 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-348.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-348.jpg' 2016-05-05 04:02:43,865 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-17.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-17.jpg' 2016-05-05 04:02:43,866 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-78.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-78.jpg' 2016-05-05 04:02:43,867 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-259.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-259.jpg' 2016-05-05 04:02:43,869 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-338.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-338.jpg' 2016-05-05 04:02:43,870 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-88.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-88.jpg' 2016-05-05 04:02:43,870 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-24.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-24.jpg' 2016-05-05 04:02:43,871 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-370.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-370.jpg' 2016-05-05 04:02:43,872 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-208.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-208.jpg' 2016-05-05 04:02:43,873 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-150.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-150.jpg' 2016-05-05 04:02:43,874 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-90.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-90.jpg' 2016-05-05 04:02:43,875 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-280.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-280.jpg' 2016-05-05 04:02:43,876 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-224.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-224.jpg' 2016-05-05 04:02:43,877 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-499.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-499.jpg' 2016-05-05 04:02:43,878 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-359.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-359.jpg' 2016-05-05 04:02:43,879 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-341.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-341.jpg' 2016-05-05 04:02:43,880 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-302.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-302.jpg' 2016-05-05 04:02:43,881 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-197.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-197.jpg' 2016-05-05 04:02:43,883 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-268.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-268.jpg' 2016-05-05 04:02:43,884 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-430.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-430.jpg' 2016-05-05 04:02:43,885 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-349.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-349.jpg' 2016-05-05 04:02:43,886 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-110.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-110.jpg' 2016-05-05 04:02:43,887 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-545.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-545.jpg' 2016-05-05 04:02:43,888 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-38.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-38.jpg' 2016-05-05 04:02:43,889 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-473.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-473.jpg' 2016-05-05 04:02:43,890 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-604.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-604.jpg' 2016-05-05 04:02:43,891 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-556.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-556.jpg' 2016-05-05 04:02:43,892 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-581.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-581.jpg' 2016-05-05 04:02:43,893 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-34.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-34.jpg' 2016-05-05 04:02:43,895 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-328.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-328.jpg' 2016-05-05 04:02:43,896 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-334.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-334.jpg' 2016-05-05 04:02:43,897 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-50.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-50.jpg' 2016-05-05 04:02:43,898 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-250.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-250.jpg' 2016-05-05 04:02:43,899 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-340.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-340.jpg' 2016-05-05 04:02:43,900 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-183.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-183.jpg' 2016-05-05 04:02:43,901 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-344.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-344.jpg' 2016-05-05 04:02:43,902 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-166.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-166.jpg' 2016-05-05 04:02:43,903 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-53.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-53.jpg' 2016-05-05 04:02:43,904 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-421.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-421.jpg' 2016-05-05 04:02:43,905 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-493.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-493.jpg' 2016-05-05 04:02:43,906 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-111.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-111.jpg' 2016-05-05 04:02:43,907 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-532.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-532.jpg' 2016-05-05 04:02:43,907 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-299.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-299.jpg' 2016-05-05 04:02:43,909 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-244.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-244.jpg' 2016-05-05 04:02:43,910 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-585.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-585.jpg' 2016-05-05 04:02:43,911 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-170.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-170.jpg' 2016-05-05 04:02:43,912 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-354.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-354.jpg' 2016-05-05 04:02:43,913 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-59.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-59.jpg' 2016-05-05 04:02:43,914 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-579.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-579.jpg' 2016-05-05 04:02:43,915 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-386.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-386.jpg' 2016-05-05 04:02:43,916 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-126.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-126.jpg' 2016-05-05 04:02:43,917 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-226.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-226.jpg' 2016-05-05 04:02:43,918 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-71.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-71.jpg' 2016-05-05 04:02:43,919 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-89.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-89.jpg' 2016-05-05 04:02:43,921 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-457.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-457.jpg' 2016-05-05 04:02:43,922 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-41.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-41.jpg' 2016-05-05 04:02:43,923 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-395.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-395.jpg' 2016-05-05 04:02:43,924 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-294.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-294.jpg' 2016-05-05 04:02:43,925 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-263.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-263.jpg' 2016-05-05 04:02:43,926 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-569.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-569.jpg' 2016-05-05 04:02:43,927 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-108.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-108.jpg' 2016-05-05 04:02:43,928 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-46.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-46.jpg' 2016-05-05 04:02:43,929 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-502.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-502.jpg' 2016-05-05 04:02:43,930 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-36.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-36.jpg' 2016-05-05 04:02:43,931 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-456.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-456.jpg' 2016-05-05 04:02:43,932 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-26.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-26.jpg' 2016-05-05 04:02:43,933 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-438.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-438.jpg' 2016-05-05 04:02:43,934 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-431.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-431.jpg' 2016-05-05 04:02:43,935 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-251.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-251.jpg' 2016-05-05 04:02:43,936 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-605.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-605.jpg' 2016-05-05 04:02:43,937 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-325.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-325.jpg' 2016-05-05 04:02:43,938 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-369.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-369.jpg' 2016-05-05 04:02:43,939 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-222.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-222.jpg' 2016-05-05 04:02:43,941 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-471.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-471.jpg' 2016-05-05 04:02:43,941 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-309.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-309.jpg' 2016-05-05 04:02:43,942 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-227.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-227.jpg' 2016-05-05 04:02:43,943 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-415.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-415.jpg' 2016-05-05 04:02:43,945 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-200.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-200.jpg' 2016-05-05 04:02:43,945 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-432.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-432.jpg' 2016-05-05 04:02:43,946 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-407.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-407.jpg' 2016-05-05 04:02:43,947 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-154.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-154.jpg' 2016-05-05 04:02:43,948 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-283.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-283.jpg' 2016-05-05 04:02:43,949 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-467.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-467.jpg' 2016-05-05 04:02:43,951 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-412.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-412.jpg' 2016-05-05 04:02:43,952 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-419.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-419.jpg' 2016-05-05 04:02:43,953 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-552.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-552.jpg' 2016-05-05 04:02:43,954 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-95.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-95.jpg' 2016-05-05 04:02:43,955 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-470.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-470.jpg' 2016-05-05 04:02:43,956 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-332.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-332.jpg' 2016-05-05 04:02:43,957 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-139.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-139.jpg' 2016-05-05 04:02:43,958 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-537.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-537.jpg' 2016-05-05 04:02:43,958 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-554.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-554.jpg' 2016-05-05 04:02:43,960 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-142.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-142.jpg' 2016-05-05 04:02:43,961 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-381.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-381.jpg' 2016-05-05 04:02:43,962 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-10.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-10.jpg' 2016-05-05 04:02:43,962 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-56.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-56.jpg' 2016-05-05 04:02:43,963 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-2.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-2.jpg' 2016-05-05 04:02:43,965 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-121.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-121.jpg' 2016-05-05 04:02:43,966 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-202.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-202.jpg' 2016-05-05 04:02:43,967 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-63.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-63.jpg' 2016-05-05 04:02:43,968 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-483.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-483.jpg' 2016-05-05 04:02:43,969 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-526.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-526.jpg' 2016-05-05 04:02:43,970 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-454.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-454.jpg' 2016-05-05 04:02:43,971 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-292.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-292.jpg' 2016-05-05 04:02:43,972 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-195.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-195.jpg' 2016-05-05 04:02:43,973 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-379.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-379.jpg' 2016-05-05 04:02:43,974 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-336.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-336.jpg' 2016-05-05 04:02:43,975 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-99.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-99.jpg' 2016-05-05 04:02:43,975 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-134.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-134.jpg' 2016-05-05 04:02:43,976 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-602.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-602.jpg' 2016-05-05 04:02:43,977 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-563.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-563.jpg' 2016-05-05 04:02:43,978 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-527.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-527.jpg' 2016-05-05 04:02:43,979 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-572.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-572.jpg' 2016-05-05 04:02:43,981 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-51.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-51.jpg' 2016-05-05 04:02:43,982 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-353.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-353.jpg' 2016-05-05 04:02:43,983 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-109.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-109.jpg' 2016-05-05 04:02:43,984 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-560.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-560.jpg' 2016-05-05 04:02:43,985 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-551.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-551.jpg' 2016-05-05 04:02:43,986 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-504.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-504.jpg' 2016-05-05 04:02:43,987 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-308.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-308.jpg' 2016-05-05 04:02:43,988 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-411.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-411.jpg' 2016-05-05 04:02:43,989 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-149.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-149.jpg' 2016-05-05 04:02:43,990 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-391.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-391.jpg' 2016-05-05 04:02:43,991 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-534.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-534.jpg' 2016-05-05 04:02:43,992 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-165.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-165.jpg' 2016-05-05 04:02:43,993 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-476.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-476.jpg' 2016-05-05 04:02:43,994 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-97.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-97.jpg' 2016-05-05 04:02:43,995 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-3.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-3.jpg' 2016-05-05 04:02:43,997 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-460.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-460.jpg' 2016-05-05 04:02:43,998 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-519.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-519.jpg' 2016-05-05 04:02:43,998 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-64.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-64.jpg' 2016-05-05 04:02:44,000 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-261.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-261.jpg' 2016-05-05 04:02:44,001 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-158.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-158.jpg' 2016-05-05 04:02:44,002 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-343.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-343.jpg' 2016-05-05 04:02:44,003 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-146.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-146.jpg' 2016-05-05 04:02:44,004 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-45.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-45.jpg' 2016-05-05 04:02:44,005 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-565.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-565.jpg' 2016-05-05 04:02:44,006 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-212.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-212.jpg' 2016-05-05 04:02:44,007 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-12.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-12.jpg' 2016-05-05 04:02:44,008 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-409.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-409.jpg' 2016-05-05 04:02:44,009 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-125.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-125.jpg' 2016-05-05 04:02:44,010 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-478.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-478.jpg' 2016-05-05 04:02:44,011 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-106.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-106.jpg' 2016-05-05 04:02:44,012 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-132.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-132.jpg' 2016-05-05 04:02:44,013 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-543.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-543.jpg' 2016-05-05 04:02:44,014 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-608.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-608.jpg' 2016-05-05 04:02:44,015 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-465.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-465.jpg' 2016-05-05 04:02:44,017 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-408.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-408.jpg' 2016-05-05 04:02:44,017 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-540.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-540.jpg' 2016-05-05 04:02:44,018 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-137.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-137.jpg' 2016-05-05 04:02:44,019 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-143.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-143.jpg' 2016-05-05 04:02:44,021 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-54.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-54.jpg' 2016-05-05 04:02:44,021 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-589.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-589.jpg' 2016-05-05 04:02:44,022 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-396.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-396.jpg' 2016-05-05 04:02:44,024 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-231.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-231.jpg' 2016-05-05 04:02:44,025 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-458.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-458.jpg' 2016-05-05 04:02:44,026 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-128.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-128.jpg' 2016-05-05 04:02:44,027 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-566.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-566.jpg' 2016-05-05 04:02:44,028 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-402.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-402.jpg' 2016-05-05 04:02:44,029 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-123.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-123.jpg' 2016-05-05 04:02:44,030 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-304.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-304.jpg' 2016-05-05 04:02:44,031 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-296.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-296.jpg' 2016-05-05 04:02:44,032 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-558.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-558.jpg' 2016-05-05 04:02:44,033 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-276.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-276.jpg' 2016-05-05 04:02:44,034 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-174.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-174.jpg' 2016-05-05 04:02:44,035 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-167.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-167.jpg' 2016-05-05 04:02:44,036 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-249.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-249.jpg' 2016-05-05 04:02:44,037 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-603.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-603.jpg' 2016-05-05 04:02:44,038 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-445.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-445.jpg' 2016-05-05 04:02:44,039 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-484.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-484.jpg' 2016-05-05 04:02:44,040 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-92.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-92.jpg' 2016-05-05 04:02:44,041 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-8.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-8.jpg' 2016-05-05 04:02:44,042 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-104.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-104.jpg' 2016-05-05 04:02:44,043 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-107.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-107.jpg' 2016-05-05 04:02:44,044 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-148.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-148.jpg' 2016-05-05 04:02:44,045 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-178.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-178.jpg' 2016-05-05 04:02:44,046 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-463.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-463.jpg' 2016-05-05 04:02:44,047 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-215.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-215.jpg' 2016-05-05 04:02:44,049 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-70.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-70.jpg' 2016-05-05 04:02:44,050 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-511.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-511.jpg' 2016-05-05 04:02:44,051 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-86.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-86.jpg' 2016-05-05 04:02:44,052 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-85.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-85.jpg' 2016-05-05 04:02:44,053 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-568.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-568.jpg' 2016-05-05 04:02:44,054 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-371.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-371.jpg' 2016-05-05 04:02:44,055 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-475.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-475.jpg' 2016-05-05 04:02:44,056 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-345.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-345.jpg' 2016-05-05 04:02:44,057 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-117.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-117.jpg' 2016-05-05 04:02:44,058 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-91.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-91.jpg' 2016-05-05 04:02:44,059 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-505.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-505.jpg' 2016-05-05 04:02:44,060 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-562.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-562.jpg' 2016-05-05 04:02:44,061 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-520.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-520.jpg' 2016-05-05 04:02:44,062 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-594.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-594.jpg' 2016-05-05 04:02:44,063 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-130.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-130.jpg' 2016-05-05 04:02:44,064 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-240.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-240.jpg' 2016-05-05 04:02:44,065 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-399.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-399.jpg' 2016-05-05 04:02:44,066 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-541.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-541.jpg' 2016-05-05 04:02:44,067 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-477.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-477.jpg' 2016-05-05 04:02:44,069 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-232.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-232.jpg' 2016-05-05 04:02:44,070 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-156.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-156.jpg' 2016-05-05 04:02:44,071 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-209.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-209.jpg' 2016-05-05 04:02:44,072 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-141.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-141.jpg' 2016-05-05 04:02:44,073 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-301.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-301.jpg' 2016-05-05 04:02:44,074 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-376.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-376.jpg' 2016-05-05 04:02:44,075 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-217.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-217.jpg' 2016-05-05 04:02:44,076 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-315.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-315.jpg' 2016-05-05 04:02:44,076 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-577.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-577.jpg' 2016-05-05 04:02:44,077 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-254.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-254.jpg' 2016-05-05 04:02:44,078 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-488.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-488.jpg' 2016-05-05 04:02:44,078 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-93.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-93.jpg' 2016-05-05 04:02:44,079 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-25.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-25.jpg' 2016-05-05 04:02:44,080 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-47.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-47.jpg' 2016-05-05 04:02:44,081 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-131.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-131.jpg' 2016-05-05 04:02:44,082 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-597.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-597.jpg' 2016-05-05 04:02:44,083 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-204.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-204.jpg' 2016-05-05 04:02:44,084 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-67.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-67.jpg' 2016-05-05 04:02:44,085 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-512.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-512.jpg' 2016-05-05 04:02:44,086 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-546.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-546.jpg' 2016-05-05 04:02:44,087 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-236.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-236.jpg' 2016-05-05 04:02:44,088 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-228.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-228.jpg' 2016-05-05 04:02:44,089 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-363.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-363.jpg' 2016-05-05 04:02:44,091 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-377.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-377.jpg' 2016-05-05 04:02:44,092 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-237.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-237.jpg' 2016-05-05 04:02:44,093 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-452.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-452.jpg' 2016-05-05 04:02:44,094 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-487.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-487.jpg' 2016-05-05 04:02:44,095 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-427.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-427.jpg' 2016-05-05 04:02:44,096 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-286.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-286.jpg' 2016-05-05 04:02:44,097 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-160.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-160.jpg' 2016-05-05 04:02:44,098 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-398.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-398.jpg' 2016-05-05 04:02:44,099 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-472.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-472.jpg' 2016-05-05 04:02:44,100 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-500.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-500.jpg' 2016-05-05 04:02:44,101 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-447.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-447.jpg' 2016-05-05 04:02:44,102 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-474.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-474.jpg' 2016-05-05 04:02:44,103 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-521.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-521.jpg' 2016-05-05 04:02:44,104 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-120.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-120.jpg' 2016-05-05 04:02:44,105 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-42.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-42.jpg' 2016-05-05 04:02:44,106 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-468.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-468.jpg' 2016-05-05 04:02:44,107 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-35.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-35.jpg' 2016-05-05 04:02:44,108 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-364.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-364.jpg' 2016-05-05 04:02:44,109 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-317.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-317.jpg' 2016-05-05 04:02:44,110 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-507.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-507.jpg' 2016-05-05 04:02:44,111 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-260.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-260.jpg' 2016-05-05 04:02:44,112 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-147.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-147.jpg' 2016-05-05 04:02:44,113 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-607.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-607.jpg' 2016-05-05 04:02:44,114 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-4.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-4.jpg' 2016-05-05 04:02:44,116 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-319.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-319.jpg' 2016-05-05 04:02:44,117 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-0.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-0.jpg' 2016-05-05 04:02:44,118 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-374.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-374.jpg' 2016-05-05 04:02:44,119 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-49.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-49.jpg' 2016-05-05 04:02:44,120 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-144.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-144.jpg' 2016-05-05 04:02:44,121 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-82.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-82.jpg' 2016-05-05 04:02:44,122 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-480.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-480.jpg' 2016-05-05 04:02:44,123 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-331.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-331.jpg' 2016-05-05 04:02:44,124 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-352.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-352.jpg' 2016-05-05 04:02:44,125 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-164.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-164.jpg' 2016-05-05 04:02:44,126 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-14.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-14.jpg' 2016-05-05 04:02:44,127 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-27.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-27.jpg' 2016-05-05 04:02:44,128 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-433.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-433.jpg' 2016-05-05 04:02:44,129 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-406.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-406.jpg' 2016-05-05 04:02:44,130 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-303.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-303.jpg' 2016-05-05 04:02:44,131 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-424.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-424.jpg' 2016-05-05 04:02:44,132 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-55.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-55.jpg' 2016-05-05 04:02:44,133 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-57.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-57.jpg' 2016-05-05 04:02:44,134 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-162.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-162.jpg' 2016-05-05 04:02:44,135 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-335.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-335.jpg' contents here
OSError
def _create_render_success_handler(name, gcode=None): def f(movie): delete_unrendered_timelapse(name) event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } eventManager().fire(Events.MOVIE_DONE, event_payload) return f
def _create_render_success_handler(name, gcode=None): def f(movie): event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } eventManager().fire(Events.MOVIE_DONE, event_payload) delete_unrendered_timelapse(name) return f
https://github.com/OctoPrint/OctoPrint/issues/1326
Enter file 2016-05-05 03:39:33,018 - octoprint.server - INFO - Starting OctoPrint 1.2.11 (master branch) 2016-05-05 03:39:33,038 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-05-05 03:39:33,577 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 6 mixin implementations, 3 hook handlers 2016-05-05 03:39:33,582 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-05-05 03:39:33,599 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-05-05 03:39:33,617 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-05-05 03:39:35,134 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-05-05 03:39:35,141 - octoprint.plugin.core - INFO - Initialized 6 plugin implementation(s) 2016-05-05 03:39:35,287 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/virtual_printer 2016-05-05 03:39:35,288 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-05-05 03:39:35,293 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-05-05 03:39:35,295 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-05-05 03:39:35,304 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-05-05 03:39:35,579 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2016-05-05 03:39:35,588 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2016-05-05 03:39:35,590 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2016-05-05 03:39:35,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-05-05 03:39:35,621 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-05-05 03:39:35,688 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local/'} 2016-05-05 03:39:37,815 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.152 2016-05-05 03:39:38,188 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2 2016-05-05 03:39:41,223 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://192.168.1.7/'} 2016-05-05 03:39:43,082 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.7/'} 2016-05-05 03:43:00,186 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2 2016-05-05 04:01:49,483 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2 2016-05-05 04:02:43,676 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-555.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-555.jpg' 2016-05-05 04:02:43,682 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-198.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-198.jpg' 2016-05-05 04:02:43,683 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-235.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-235.jpg' 2016-05-05 04:02:43,684 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-611.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-611.jpg' 2016-05-05 04:02:43,686 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-206.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-206.jpg' 2016-05-05 04:02:43,687 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-115.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-115.jpg' 2016-05-05 04:02:43,689 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-7.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-7.jpg' 2016-05-05 04:02:43,690 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-375.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-375.jpg' 2016-05-05 04:02:43,691 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-177.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-177.jpg' 2016-05-05 04:02:43,693 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-492.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-492.jpg' 2016-05-05 04:02:43,695 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-518.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-518.jpg' 2016-05-05 04:02:43,696 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-323.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-323.jpg' 2016-05-05 04:02:43,697 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-102.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-102.jpg' 2016-05-05 04:02:43,699 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-238.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-238.jpg' 2016-05-05 04:02:43,702 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-190.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-190.jpg' 2016-05-05 04:02:43,703 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-243.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-243.jpg' 2016-05-05 04:02:43,704 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-503.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-503.jpg' 2016-05-05 04:02:43,705 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-74.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-74.jpg' 2016-05-05 04:02:43,707 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-271.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-271.jpg' 2016-05-05 04:02:43,708 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-310.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-310.jpg' 2016-05-05 04:02:43,709 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-576.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-576.jpg' 2016-05-05 04:02:43,711 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-553.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-553.jpg' 2016-05-05 04:02:43,712 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-171.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-171.jpg' 2016-05-05 04:02:43,713 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-428.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-428.jpg' 2016-05-05 04:02:43,715 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-429.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-429.jpg' 2016-05-05 04:02:43,716 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-220.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-220.jpg' 2016-05-05 04:02:43,718 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-76.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-76.jpg' 2016-05-05 04:02:43,719 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-584.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-584.jpg' 2016-05-05 04:02:43,721 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-373.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-373.jpg' 2016-05-05 04:02:43,722 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-87.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-87.jpg' 2016-05-05 04:02:43,723 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-29.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-29.jpg' 2016-05-05 04:02:43,725 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-378.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-378.jpg' 2016-05-05 04:02:43,726 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-23.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-23.jpg' 2016-05-05 04:02:43,727 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-210.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-210.jpg' 2016-05-05 04:02:43,728 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-582.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-582.jpg' 2016-05-05 04:02:43,730 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-561.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-561.jpg' 2016-05-05 04:02:43,731 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-192.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-192.jpg' 2016-05-05 04:02:43,733 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-578.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-578.jpg' 2016-05-05 04:02:43,734 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-509.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-509.jpg' 2016-05-05 04:02:43,736 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-387.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-387.jpg' 2016-05-05 04:02:43,737 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-306.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-306.jpg' 2016-05-05 04:02:43,738 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-216.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-216.jpg' 2016-05-05 04:02:43,740 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-187.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-187.jpg' 2016-05-05 04:02:43,741 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-119.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-119.jpg' 2016-05-05 04:02:43,742 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-330.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-330.jpg' 2016-05-05 04:02:43,744 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-275.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-275.jpg' 2016-05-05 04:02:43,745 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-285.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-285.jpg' 2016-05-05 04:02:43,746 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-549.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-549.jpg' 2016-05-05 04:02:43,747 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-401.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-401.jpg' 2016-05-05 04:02:43,749 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-337.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-337.jpg' 2016-05-05 04:02:43,750 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-176.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-176.jpg' 2016-05-05 04:02:43,751 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-20.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-20.jpg' 2016-05-05 04:02:43,753 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-72.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-72.jpg' 2016-05-05 04:02:43,755 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-124.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-124.jpg' 2016-05-05 04:02:43,756 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-230.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-230.jpg' 2016-05-05 04:02:43,757 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-329.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-329.jpg' 2016-05-05 04:02:43,759 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-22.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-22.jpg' 2016-05-05 04:02:43,760 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-510.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-510.jpg' 2016-05-05 04:02:43,762 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-180.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-180.jpg' 2016-05-05 04:02:43,763 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-466.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-466.jpg' 2016-05-05 04:02:43,764 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-219.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-219.jpg' 2016-05-05 04:02:43,766 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-118.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-118.jpg' 2016-05-05 04:02:43,767 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-246.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-246.jpg' 2016-05-05 04:02:43,768 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-52.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-52.jpg' 2016-05-05 04:02:43,770 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-255.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-255.jpg' 2016-05-05 04:02:43,771 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-441.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-441.jpg' 2016-05-05 04:02:43,772 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-360.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-360.jpg' 2016-05-05 04:02:43,773 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-459.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-459.jpg' 2016-05-05 04:02:43,774 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-129.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-129.jpg' 2016-05-05 04:02:43,776 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-191.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-191.jpg' 2016-05-05 04:02:43,778 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-196.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-196.jpg' 2016-05-05 04:02:43,779 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-248.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-248.jpg' 2016-05-05 04:02:43,781 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-44.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-44.jpg' 2016-05-05 04:02:43,783 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-400.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-400.jpg' 2016-05-05 04:02:43,784 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-580.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-580.jpg' 2016-05-05 04:02:43,785 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-15.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-15.jpg' 2016-05-05 04:02:43,787 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-524.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-524.jpg' 2016-05-05 04:02:43,788 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-297.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-297.jpg' 2016-05-05 04:02:43,790 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-218.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-218.jpg' 2016-05-05 04:02:43,791 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-314.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-314.jpg' 2016-05-05 04:02:43,792 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-168.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-168.jpg' 2016-05-05 04:02:43,794 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-66.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-66.jpg' 2016-05-05 04:02:43,796 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-155.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-155.jpg' 2016-05-05 04:02:43,797 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-96.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-96.jpg' 2016-05-05 04:02:43,798 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-486.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-486.jpg' 2016-05-05 04:02:43,800 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-586.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-586.jpg' 2016-05-05 04:02:43,801 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-601.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-601.jpg' 2016-05-05 04:02:43,803 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-274.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-274.jpg' 2016-05-05 04:02:43,804 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-253.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-253.jpg' 2016-05-05 04:02:43,805 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-298.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-298.jpg' 2016-05-05 04:02:43,807 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-307.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-307.jpg' 2016-05-05 04:02:43,808 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-522.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-522.jpg' 2016-05-05 04:02:43,809 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-564.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-564.jpg' 2016-05-05 04:02:43,811 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-410.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-410.jpg' 2016-05-05 04:02:43,812 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-138.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-138.jpg' 2016-05-05 04:02:43,813 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-201.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-201.jpg' 2016-05-05 04:02:43,815 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-425.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-425.jpg' 2016-05-05 04:02:43,817 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-5.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-5.jpg' 2016-05-05 04:02:43,818 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-61.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-61.jpg' 2016-05-05 04:02:43,819 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-81.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-81.jpg' 2016-05-05 04:02:43,821 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-199.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-199.jpg' 2016-05-05 04:02:43,822 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-358.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-358.jpg' 2016-05-05 04:02:43,823 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-194.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-194.jpg' 2016-05-05 04:02:43,825 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-423.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-423.jpg' 2016-05-05 04:02:43,826 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-32.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-32.jpg' 2016-05-05 04:02:43,827 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-390.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-390.jpg' 2016-05-05 04:02:43,829 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-320.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-320.jpg' 2016-05-05 04:02:43,830 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-300.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-300.jpg' 2016-05-05 04:02:43,831 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-416.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-416.jpg' 2016-05-05 04:02:43,833 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-113.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-113.jpg' 2016-05-05 04:02:43,834 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-461.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-461.jpg' 2016-05-05 04:02:43,835 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-464.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-464.jpg' 2016-05-05 04:02:43,836 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-442.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-442.jpg' 2016-05-05 04:02:43,837 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-346.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-346.jpg' 2016-05-05 04:02:43,838 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-482.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-482.jpg' 2016-05-05 04:02:43,839 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-575.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-575.jpg' 2016-05-05 04:02:43,840 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-533.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-533.jpg' 2016-05-05 04:02:43,841 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-221.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-221.jpg' 2016-05-05 04:02:43,842 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-614.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-614.jpg' 2016-05-05 04:02:43,843 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-133.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-133.jpg' 2016-05-05 04:02:43,844 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-267.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-267.jpg' 2016-05-05 04:02:43,845 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-79.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-79.jpg' 2016-05-05 04:02:43,846 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-172.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-172.jpg' 2016-05-05 04:02:43,847 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-397.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-397.jpg' 2016-05-05 04:02:43,848 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-153.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-153.jpg' 2016-05-05 04:02:43,850 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-436.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-436.jpg' 2016-05-05 04:02:43,851 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-103.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-103.jpg' 2016-05-05 04:02:43,852 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-368.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-368.jpg' 2016-05-05 04:02:43,853 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-592.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-592.jpg' 2016-05-05 04:02:43,854 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-241.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-241.jpg' 2016-05-05 04:02:43,856 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-392.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-392.jpg' 2016-05-05 04:02:43,857 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-339.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-339.jpg' 2016-05-05 04:02:43,858 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-535.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-535.jpg' 2016-05-05 04:02:43,859 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-451.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-451.jpg' 2016-05-05 04:02:43,860 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-157.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-157.jpg' 2016-05-05 04:02:43,861 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-446.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-446.jpg' 2016-05-05 04:02:43,862 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-163.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-163.jpg' 2016-05-05 04:02:43,863 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-33.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-33.jpg' 2016-05-05 04:02:43,864 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-348.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-348.jpg' 2016-05-05 04:02:43,865 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-17.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-17.jpg' 2016-05-05 04:02:43,866 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-78.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-78.jpg' 2016-05-05 04:02:43,867 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-259.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-259.jpg' 2016-05-05 04:02:43,869 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-338.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-338.jpg' 2016-05-05 04:02:43,870 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-88.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-88.jpg' 2016-05-05 04:02:43,870 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-24.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-24.jpg' 2016-05-05 04:02:43,871 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-370.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-370.jpg' 2016-05-05 04:02:43,872 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-208.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-208.jpg' 2016-05-05 04:02:43,873 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-150.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-150.jpg' 2016-05-05 04:02:43,874 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-90.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-90.jpg' 2016-05-05 04:02:43,875 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-280.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-280.jpg' 2016-05-05 04:02:43,876 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-224.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-224.jpg' 2016-05-05 04:02:43,877 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-499.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-499.jpg' 2016-05-05 04:02:43,878 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-359.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-359.jpg' 2016-05-05 04:02:43,879 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-341.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-341.jpg' 2016-05-05 04:02:43,880 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-302.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-302.jpg' 2016-05-05 04:02:43,881 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-197.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-197.jpg' 2016-05-05 04:02:43,883 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-268.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-268.jpg' 2016-05-05 04:02:43,884 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-430.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-430.jpg' 2016-05-05 04:02:43,885 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-349.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-349.jpg' 2016-05-05 04:02:43,886 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-110.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-110.jpg' 2016-05-05 04:02:43,887 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-545.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-545.jpg' 2016-05-05 04:02:43,888 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-38.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-38.jpg' 2016-05-05 04:02:43,889 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-473.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-473.jpg' 2016-05-05 04:02:43,890 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-604.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-604.jpg' 2016-05-05 04:02:43,891 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-556.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-556.jpg' 2016-05-05 04:02:43,892 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-581.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-581.jpg' 2016-05-05 04:02:43,893 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-34.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-34.jpg' 2016-05-05 04:02:43,895 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-328.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-328.jpg' 2016-05-05 04:02:43,896 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-334.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-334.jpg' 2016-05-05 04:02:43,897 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-50.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-50.jpg' 2016-05-05 04:02:43,898 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-250.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-250.jpg' 2016-05-05 04:02:43,899 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-340.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-340.jpg' 2016-05-05 04:02:43,900 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-183.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-183.jpg' 2016-05-05 04:02:43,901 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-344.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-344.jpg' 2016-05-05 04:02:43,902 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-166.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-166.jpg' 2016-05-05 04:02:43,903 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-53.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-53.jpg' 2016-05-05 04:02:43,904 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-421.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-421.jpg' 2016-05-05 04:02:43,905 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-493.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-493.jpg' 2016-05-05 04:02:43,906 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-111.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-111.jpg' 2016-05-05 04:02:43,907 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-532.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-532.jpg' 2016-05-05 04:02:43,907 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-299.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-299.jpg' 2016-05-05 04:02:43,909 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-244.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-244.jpg' 2016-05-05 04:02:43,910 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-585.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-585.jpg' 2016-05-05 04:02:43,911 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-170.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-170.jpg' 2016-05-05 04:02:43,912 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-354.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-354.jpg' 2016-05-05 04:02:43,913 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-59.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-59.jpg' 2016-05-05 04:02:43,914 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-579.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-579.jpg' 2016-05-05 04:02:43,915 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-386.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-386.jpg' 2016-05-05 04:02:43,916 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-126.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-126.jpg' 2016-05-05 04:02:43,917 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-226.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-226.jpg' 2016-05-05 04:02:43,918 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-71.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-71.jpg' 2016-05-05 04:02:43,919 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-89.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-89.jpg' 2016-05-05 04:02:43,921 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-457.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-457.jpg' 2016-05-05 04:02:43,922 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-41.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-41.jpg' 2016-05-05 04:02:43,923 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-395.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-395.jpg' 2016-05-05 04:02:43,924 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-294.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-294.jpg' 2016-05-05 04:02:43,925 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-263.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-263.jpg' 2016-05-05 04:02:43,926 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-569.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-569.jpg' 2016-05-05 04:02:43,927 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-108.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-108.jpg' 2016-05-05 04:02:43,928 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-46.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-46.jpg' 2016-05-05 04:02:43,929 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-502.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-502.jpg' 2016-05-05 04:02:43,930 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-36.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-36.jpg' 2016-05-05 04:02:43,931 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-456.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-456.jpg' 2016-05-05 04:02:43,932 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-26.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-26.jpg' 2016-05-05 04:02:43,933 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-438.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-438.jpg' 2016-05-05 04:02:43,934 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-431.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-431.jpg' 2016-05-05 04:02:43,935 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-251.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-251.jpg' 2016-05-05 04:02:43,936 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-605.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-605.jpg' 2016-05-05 04:02:43,937 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-325.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-325.jpg' 2016-05-05 04:02:43,938 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-369.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-369.jpg' 2016-05-05 04:02:43,939 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-222.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-222.jpg' 2016-05-05 04:02:43,941 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-471.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-471.jpg' 2016-05-05 04:02:43,941 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-309.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-309.jpg' 2016-05-05 04:02:43,942 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-227.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-227.jpg' 2016-05-05 04:02:43,943 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-415.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-415.jpg' 2016-05-05 04:02:43,945 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-200.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-200.jpg' 2016-05-05 04:02:43,945 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-432.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-432.jpg' 2016-05-05 04:02:43,946 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-407.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-407.jpg' 2016-05-05 04:02:43,947 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-154.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-154.jpg' 2016-05-05 04:02:43,948 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-283.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-283.jpg' 2016-05-05 04:02:43,949 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-467.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-467.jpg' 2016-05-05 04:02:43,951 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-412.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-412.jpg' 2016-05-05 04:02:43,952 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-419.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-419.jpg' 2016-05-05 04:02:43,953 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-552.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-552.jpg' 2016-05-05 04:02:43,954 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-95.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-95.jpg' 2016-05-05 04:02:43,955 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-470.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-470.jpg' 2016-05-05 04:02:43,956 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-332.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-332.jpg' 2016-05-05 04:02:43,957 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-139.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-139.jpg' 2016-05-05 04:02:43,958 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-537.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-537.jpg' 2016-05-05 04:02:43,958 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-554.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-554.jpg' 2016-05-05 04:02:43,960 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-142.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-142.jpg' 2016-05-05 04:02:43,961 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-381.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-381.jpg' 2016-05-05 04:02:43,962 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-10.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-10.jpg' 2016-05-05 04:02:43,962 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-56.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-56.jpg' 2016-05-05 04:02:43,963 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-2.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-2.jpg' 2016-05-05 04:02:43,965 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-121.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-121.jpg' 2016-05-05 04:02:43,966 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-202.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-202.jpg' 2016-05-05 04:02:43,967 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-63.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-63.jpg' 2016-05-05 04:02:43,968 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-483.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-483.jpg' 2016-05-05 04:02:43,969 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-526.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-526.jpg' 2016-05-05 04:02:43,970 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-454.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-454.jpg' 2016-05-05 04:02:43,971 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-292.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-292.jpg' 2016-05-05 04:02:43,972 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-195.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-195.jpg' 2016-05-05 04:02:43,973 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-379.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-379.jpg' 2016-05-05 04:02:43,974 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-336.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-336.jpg' 2016-05-05 04:02:43,975 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-99.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-99.jpg' 2016-05-05 04:02:43,975 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-134.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-134.jpg' 2016-05-05 04:02:43,976 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-602.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-602.jpg' 2016-05-05 04:02:43,977 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-563.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-563.jpg' 2016-05-05 04:02:43,978 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-527.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-527.jpg' 2016-05-05 04:02:43,979 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-572.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-572.jpg' 2016-05-05 04:02:43,981 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-51.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-51.jpg' 2016-05-05 04:02:43,982 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-353.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-353.jpg' 2016-05-05 04:02:43,983 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-109.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-109.jpg' 2016-05-05 04:02:43,984 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-560.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-560.jpg' 2016-05-05 04:02:43,985 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-551.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-551.jpg' 2016-05-05 04:02:43,986 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-504.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-504.jpg' 2016-05-05 04:02:43,987 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-308.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-308.jpg' 2016-05-05 04:02:43,988 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-411.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-411.jpg' 2016-05-05 04:02:43,989 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-149.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-149.jpg' 2016-05-05 04:02:43,990 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-391.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-391.jpg' 2016-05-05 04:02:43,991 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-534.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-534.jpg' 2016-05-05 04:02:43,992 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-165.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-165.jpg' 2016-05-05 04:02:43,993 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-476.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-476.jpg' 2016-05-05 04:02:43,994 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-97.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-97.jpg' 2016-05-05 04:02:43,995 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-3.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-3.jpg' 2016-05-05 04:02:43,997 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-460.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-460.jpg' 2016-05-05 04:02:43,998 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-519.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-519.jpg' 2016-05-05 04:02:43,998 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-64.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-64.jpg' 2016-05-05 04:02:44,000 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-261.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-261.jpg' 2016-05-05 04:02:44,001 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-158.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-158.jpg' 2016-05-05 04:02:44,002 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-343.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-343.jpg' 2016-05-05 04:02:44,003 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-146.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-146.jpg' 2016-05-05 04:02:44,004 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-45.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-45.jpg' 2016-05-05 04:02:44,005 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-565.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-565.jpg' 2016-05-05 04:02:44,006 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-212.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-212.jpg' 2016-05-05 04:02:44,007 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-12.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-12.jpg' 2016-05-05 04:02:44,008 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-409.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-409.jpg' 2016-05-05 04:02:44,009 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-125.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-125.jpg' 2016-05-05 04:02:44,010 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-478.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-478.jpg' 2016-05-05 04:02:44,011 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-106.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-106.jpg' 2016-05-05 04:02:44,012 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-132.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-132.jpg' 2016-05-05 04:02:44,013 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-543.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-543.jpg' 2016-05-05 04:02:44,014 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-608.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-608.jpg' 2016-05-05 04:02:44,015 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-465.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-465.jpg' 2016-05-05 04:02:44,017 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-408.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-408.jpg' 2016-05-05 04:02:44,017 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-540.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-540.jpg' 2016-05-05 04:02:44,018 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-137.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-137.jpg' 2016-05-05 04:02:44,019 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-143.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-143.jpg' 2016-05-05 04:02:44,021 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-54.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-54.jpg' 2016-05-05 04:02:44,021 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-589.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-589.jpg' 2016-05-05 04:02:44,022 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-396.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-396.jpg' 2016-05-05 04:02:44,024 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-231.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-231.jpg' 2016-05-05 04:02:44,025 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-458.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-458.jpg' 2016-05-05 04:02:44,026 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-128.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-128.jpg' 2016-05-05 04:02:44,027 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-566.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-566.jpg' 2016-05-05 04:02:44,028 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-402.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-402.jpg' 2016-05-05 04:02:44,029 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-123.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-123.jpg' 2016-05-05 04:02:44,030 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-304.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-304.jpg' 2016-05-05 04:02:44,031 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-296.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-296.jpg' 2016-05-05 04:02:44,032 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-558.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-558.jpg' 2016-05-05 04:02:44,033 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-276.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-276.jpg' 2016-05-05 04:02:44,034 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-174.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-174.jpg' 2016-05-05 04:02:44,035 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-167.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-167.jpg' 2016-05-05 04:02:44,036 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-249.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-249.jpg' 2016-05-05 04:02:44,037 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-603.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-603.jpg' 2016-05-05 04:02:44,038 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-445.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-445.jpg' 2016-05-05 04:02:44,039 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-484.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-484.jpg' 2016-05-05 04:02:44,040 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-92.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-92.jpg' 2016-05-05 04:02:44,041 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-8.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-8.jpg' 2016-05-05 04:02:44,042 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-104.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-104.jpg' 2016-05-05 04:02:44,043 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-107.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-107.jpg' 2016-05-05 04:02:44,044 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-148.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-148.jpg' 2016-05-05 04:02:44,045 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-178.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-178.jpg' 2016-05-05 04:02:44,046 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-463.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-463.jpg' 2016-05-05 04:02:44,047 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-215.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-215.jpg' 2016-05-05 04:02:44,049 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-70.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-70.jpg' 2016-05-05 04:02:44,050 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-511.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-511.jpg' 2016-05-05 04:02:44,051 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-86.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-86.jpg' 2016-05-05 04:02:44,052 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-85.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-85.jpg' 2016-05-05 04:02:44,053 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-568.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-568.jpg' 2016-05-05 04:02:44,054 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-371.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-371.jpg' 2016-05-05 04:02:44,055 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-475.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-475.jpg' 2016-05-05 04:02:44,056 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-345.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-345.jpg' 2016-05-05 04:02:44,057 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-117.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-117.jpg' 2016-05-05 04:02:44,058 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-91.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-91.jpg' 2016-05-05 04:02:44,059 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-505.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-505.jpg' 2016-05-05 04:02:44,060 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-562.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-562.jpg' 2016-05-05 04:02:44,061 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-520.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-520.jpg' 2016-05-05 04:02:44,062 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-594.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-594.jpg' 2016-05-05 04:02:44,063 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-130.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-130.jpg' 2016-05-05 04:02:44,064 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-240.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-240.jpg' 2016-05-05 04:02:44,065 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-399.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-399.jpg' 2016-05-05 04:02:44,066 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-541.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-541.jpg' 2016-05-05 04:02:44,067 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-477.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-477.jpg' 2016-05-05 04:02:44,069 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-232.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-232.jpg' 2016-05-05 04:02:44,070 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-156.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-156.jpg' 2016-05-05 04:02:44,071 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-209.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-209.jpg' 2016-05-05 04:02:44,072 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-141.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-141.jpg' 2016-05-05 04:02:44,073 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-301.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-301.jpg' 2016-05-05 04:02:44,074 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-376.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-376.jpg' 2016-05-05 04:02:44,075 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-217.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-217.jpg' 2016-05-05 04:02:44,076 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-315.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-315.jpg' 2016-05-05 04:02:44,076 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-577.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-577.jpg' 2016-05-05 04:02:44,077 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-254.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-254.jpg' 2016-05-05 04:02:44,078 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-488.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-488.jpg' 2016-05-05 04:02:44,078 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-93.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-93.jpg' 2016-05-05 04:02:44,079 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-25.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-25.jpg' 2016-05-05 04:02:44,080 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-47.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-47.jpg' 2016-05-05 04:02:44,081 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-131.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-131.jpg' 2016-05-05 04:02:44,082 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-597.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-597.jpg' 2016-05-05 04:02:44,083 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-204.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-204.jpg' 2016-05-05 04:02:44,084 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-67.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-67.jpg' 2016-05-05 04:02:44,085 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-512.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-512.jpg' 2016-05-05 04:02:44,086 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-546.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-546.jpg' 2016-05-05 04:02:44,087 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-236.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-236.jpg' 2016-05-05 04:02:44,088 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-228.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-228.jpg' 2016-05-05 04:02:44,089 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-363.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-363.jpg' 2016-05-05 04:02:44,091 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-377.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-377.jpg' 2016-05-05 04:02:44,092 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-237.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-237.jpg' 2016-05-05 04:02:44,093 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-452.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-452.jpg' 2016-05-05 04:02:44,094 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-487.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-487.jpg' 2016-05-05 04:02:44,095 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-427.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-427.jpg' 2016-05-05 04:02:44,096 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-286.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-286.jpg' 2016-05-05 04:02:44,097 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-160.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-160.jpg' 2016-05-05 04:02:44,098 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-398.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-398.jpg' 2016-05-05 04:02:44,099 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-472.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-472.jpg' 2016-05-05 04:02:44,100 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-500.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-500.jpg' 2016-05-05 04:02:44,101 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-447.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-447.jpg' 2016-05-05 04:02:44,102 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-474.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-474.jpg' 2016-05-05 04:02:44,103 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-521.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-521.jpg' 2016-05-05 04:02:44,104 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-120.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-120.jpg' 2016-05-05 04:02:44,105 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-42.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-42.jpg' 2016-05-05 04:02:44,106 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-468.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-468.jpg' 2016-05-05 04:02:44,107 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-35.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-35.jpg' 2016-05-05 04:02:44,108 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-364.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-364.jpg' 2016-05-05 04:02:44,109 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-317.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-317.jpg' 2016-05-05 04:02:44,110 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-507.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-507.jpg' 2016-05-05 04:02:44,111 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-260.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-260.jpg' 2016-05-05 04:02:44,112 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-147.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-147.jpg' 2016-05-05 04:02:44,113 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-607.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-607.jpg' 2016-05-05 04:02:44,114 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-4.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-4.jpg' 2016-05-05 04:02:44,116 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-319.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-319.jpg' 2016-05-05 04:02:44,117 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-0.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-0.jpg' 2016-05-05 04:02:44,118 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-374.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-374.jpg' 2016-05-05 04:02:44,119 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-49.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-49.jpg' 2016-05-05 04:02:44,120 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-144.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-144.jpg' 2016-05-05 04:02:44,121 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-82.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-82.jpg' 2016-05-05 04:02:44,122 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-480.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-480.jpg' 2016-05-05 04:02:44,123 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-331.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-331.jpg' 2016-05-05 04:02:44,124 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-352.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-352.jpg' 2016-05-05 04:02:44,125 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-164.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-164.jpg' 2016-05-05 04:02:44,126 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-14.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-14.jpg' 2016-05-05 04:02:44,127 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-27.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-27.jpg' 2016-05-05 04:02:44,128 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-433.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-433.jpg' 2016-05-05 04:02:44,129 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-406.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-406.jpg' 2016-05-05 04:02:44,130 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-303.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-303.jpg' 2016-05-05 04:02:44,131 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-424.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-424.jpg' 2016-05-05 04:02:44,132 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-55.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-55.jpg' 2016-05-05 04:02:44,133 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-57.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-57.jpg' 2016-05-05 04:02:44,134 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-162.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-162.jpg' 2016-05-05 04:02:44,135 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-335.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-335.jpg' contents here
OSError
def f(movie): delete_unrendered_timelapse(name) event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } eventManager().fire(Events.MOVIE_DONE, event_payload)
def f(movie): event_payload = { "gcode": gcode if gcode is not None else "unknown", "movie": movie, "movie_basename": os.path.basename(movie), } eventManager().fire(Events.MOVIE_DONE, event_payload) delete_unrendered_timelapse(name)
https://github.com/OctoPrint/OctoPrint/issues/1326
Enter file 2016-05-05 03:39:33,018 - octoprint.server - INFO - Starting OctoPrint 1.2.11 (master branch) 2016-05-05 03:39:33,038 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/.octoprint/plugins, /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins and installed plugin packages... 2016-05-05 03:39:33,577 - octoprint.plugin.core - INFO - Found 6 plugin(s) providing 6 mixin implementations, 3 hook handlers 2016-05-05 03:39:33,582 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads... 2016-05-05 03:39:33,599 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully. 2016-05-05 03:39:33,617 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk 2016-05-05 03:39:35,134 - octoprint.util.pip - INFO - Found pip at /home/pi/oprint/bin/pip, version is 8.1.1 2016-05-05 03:39:35,141 - octoprint.plugin.core - INFO - Initialized 6 plugin implementation(s) 2016-05-05 03:39:35,287 - octoprint.plugin.core - INFO - 6 plugin(s) registered with the system: | Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/announcements | CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/cura | Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/discovery | Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/pluginmanager | Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/softwareupdate | Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/plugins/virtual_printer 2016-05-05 03:39:35,288 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue... 2016-05-05 03:39:35,293 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue 2016-05-05 03:39:35,295 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets... 2016-05-05 03:39:35,304 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache... 2016-05-05 03:39:35,579 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp 2016-05-05 03:39:35,588 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp 2016-05-05 03:39:35,590 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP 2016-05-05 03:39:35,607 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid 2016-05-05 03:39:35,621 - octoprint.server - INFO - Listening on http://127.0.0.1:5000 2016-05-05 03:39:35,688 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://octopi.local/'} 2016-05-05 03:39:37,815 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.152 2016-05-05 03:39:38,188 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2 2016-05-05 03:39:41,223 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'en', 'path': '/', 'base_url': 'http://192.168.1.7/'} 2016-05-05 03:39:43,082 - octoprint.server - INFO - Preemptively caching / for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.7/'} 2016-05-05 03:43:00,186 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2 2016-05-05 04:01:49,483 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2 2016-05-05 04:02:43,676 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-555.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-555.jpg' 2016-05-05 04:02:43,682 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-198.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-198.jpg' 2016-05-05 04:02:43,683 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-235.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-235.jpg' 2016-05-05 04:02:43,684 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-611.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-611.jpg' 2016-05-05 04:02:43,686 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-206.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-206.jpg' 2016-05-05 04:02:43,687 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-115.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-115.jpg' 2016-05-05 04:02:43,689 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-7.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-7.jpg' 2016-05-05 04:02:43,690 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-375.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-375.jpg' 2016-05-05 04:02:43,691 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-177.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-177.jpg' 2016-05-05 04:02:43,693 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-492.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-492.jpg' 2016-05-05 04:02:43,695 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-518.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-518.jpg' 2016-05-05 04:02:43,696 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-323.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-323.jpg' 2016-05-05 04:02:43,697 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-102.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-102.jpg' 2016-05-05 04:02:43,699 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-238.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-238.jpg' 2016-05-05 04:02:43,702 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-190.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-190.jpg' 2016-05-05 04:02:43,703 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-243.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-243.jpg' 2016-05-05 04:02:43,704 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-503.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-503.jpg' 2016-05-05 04:02:43,705 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-74.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-74.jpg' 2016-05-05 04:02:43,707 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-271.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-271.jpg' 2016-05-05 04:02:43,708 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-310.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-310.jpg' 2016-05-05 04:02:43,709 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-576.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-576.jpg' 2016-05-05 04:02:43,711 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-553.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-553.jpg' 2016-05-05 04:02:43,712 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-171.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-171.jpg' 2016-05-05 04:02:43,713 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-428.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-428.jpg' 2016-05-05 04:02:43,715 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-429.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-429.jpg' 2016-05-05 04:02:43,716 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-220.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-220.jpg' 2016-05-05 04:02:43,718 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-76.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-76.jpg' 2016-05-05 04:02:43,719 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-584.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-584.jpg' 2016-05-05 04:02:43,721 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-373.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-373.jpg' 2016-05-05 04:02:43,722 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-87.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-87.jpg' 2016-05-05 04:02:43,723 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-29.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-29.jpg' 2016-05-05 04:02:43,725 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-378.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-378.jpg' 2016-05-05 04:02:43,726 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-23.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-23.jpg' 2016-05-05 04:02:43,727 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-210.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-210.jpg' 2016-05-05 04:02:43,728 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-582.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-582.jpg' 2016-05-05 04:02:43,730 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-561.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-561.jpg' 2016-05-05 04:02:43,731 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-192.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-192.jpg' 2016-05-05 04:02:43,733 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-578.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-578.jpg' 2016-05-05 04:02:43,734 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-509.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-509.jpg' 2016-05-05 04:02:43,736 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-387.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-387.jpg' 2016-05-05 04:02:43,737 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-306.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-306.jpg' 2016-05-05 04:02:43,738 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-216.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-216.jpg' 2016-05-05 04:02:43,740 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-187.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-187.jpg' 2016-05-05 04:02:43,741 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-119.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-119.jpg' 2016-05-05 04:02:43,742 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-330.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-330.jpg' 2016-05-05 04:02:43,744 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-275.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-275.jpg' 2016-05-05 04:02:43,745 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-285.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-285.jpg' 2016-05-05 04:02:43,746 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-549.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-549.jpg' 2016-05-05 04:02:43,747 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-401.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-401.jpg' 2016-05-05 04:02:43,749 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-337.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-337.jpg' 2016-05-05 04:02:43,750 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-176.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-176.jpg' 2016-05-05 04:02:43,751 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-20.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-20.jpg' 2016-05-05 04:02:43,753 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-72.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-72.jpg' 2016-05-05 04:02:43,755 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-124.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-124.jpg' 2016-05-05 04:02:43,756 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-230.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-230.jpg' 2016-05-05 04:02:43,757 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-329.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-329.jpg' 2016-05-05 04:02:43,759 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-22.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-22.jpg' 2016-05-05 04:02:43,760 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-510.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-510.jpg' 2016-05-05 04:02:43,762 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-180.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-180.jpg' 2016-05-05 04:02:43,763 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-466.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-466.jpg' 2016-05-05 04:02:43,764 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-219.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-219.jpg' 2016-05-05 04:02:43,766 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-118.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-118.jpg' 2016-05-05 04:02:43,767 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-246.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-246.jpg' 2016-05-05 04:02:43,768 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-52.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-52.jpg' 2016-05-05 04:02:43,770 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-255.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-255.jpg' 2016-05-05 04:02:43,771 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-441.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-441.jpg' 2016-05-05 04:02:43,772 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-360.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-360.jpg' 2016-05-05 04:02:43,773 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-459.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-459.jpg' 2016-05-05 04:02:43,774 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-129.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-129.jpg' 2016-05-05 04:02:43,776 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-191.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-191.jpg' 2016-05-05 04:02:43,778 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-196.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-196.jpg' 2016-05-05 04:02:43,779 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-248.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-248.jpg' 2016-05-05 04:02:43,781 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-44.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-44.jpg' 2016-05-05 04:02:43,783 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-400.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-400.jpg' 2016-05-05 04:02:43,784 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-580.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-580.jpg' 2016-05-05 04:02:43,785 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-15.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-15.jpg' 2016-05-05 04:02:43,787 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-524.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-524.jpg' 2016-05-05 04:02:43,788 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-297.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-297.jpg' 2016-05-05 04:02:43,790 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-218.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-218.jpg' 2016-05-05 04:02:43,791 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-314.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-314.jpg' 2016-05-05 04:02:43,792 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-168.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-168.jpg' 2016-05-05 04:02:43,794 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-66.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-66.jpg' 2016-05-05 04:02:43,796 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-155.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-155.jpg' 2016-05-05 04:02:43,797 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-96.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-96.jpg' 2016-05-05 04:02:43,798 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-486.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-486.jpg' 2016-05-05 04:02:43,800 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-586.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-586.jpg' 2016-05-05 04:02:43,801 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-601.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-601.jpg' 2016-05-05 04:02:43,803 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-274.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-274.jpg' 2016-05-05 04:02:43,804 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-253.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-253.jpg' 2016-05-05 04:02:43,805 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-298.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-298.jpg' 2016-05-05 04:02:43,807 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-307.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-307.jpg' 2016-05-05 04:02:43,808 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-522.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-522.jpg' 2016-05-05 04:02:43,809 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-564.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-564.jpg' 2016-05-05 04:02:43,811 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-410.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-410.jpg' 2016-05-05 04:02:43,812 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-138.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-138.jpg' 2016-05-05 04:02:43,813 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-201.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-201.jpg' 2016-05-05 04:02:43,815 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-425.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-425.jpg' 2016-05-05 04:02:43,817 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-5.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-5.jpg' 2016-05-05 04:02:43,818 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-61.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-61.jpg' 2016-05-05 04:02:43,819 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-81.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-81.jpg' 2016-05-05 04:02:43,821 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-199.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-199.jpg' 2016-05-05 04:02:43,822 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-358.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-358.jpg' 2016-05-05 04:02:43,823 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-194.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-194.jpg' 2016-05-05 04:02:43,825 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-423.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-423.jpg' 2016-05-05 04:02:43,826 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-32.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-32.jpg' 2016-05-05 04:02:43,827 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-390.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-390.jpg' 2016-05-05 04:02:43,829 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-320.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-320.jpg' 2016-05-05 04:02:43,830 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-300.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-300.jpg' 2016-05-05 04:02:43,831 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-416.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-416.jpg' 2016-05-05 04:02:43,833 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-113.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-113.jpg' 2016-05-05 04:02:43,834 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-461.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-461.jpg' 2016-05-05 04:02:43,835 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-464.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-464.jpg' 2016-05-05 04:02:43,836 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-442.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-442.jpg' 2016-05-05 04:02:43,837 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-346.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-346.jpg' 2016-05-05 04:02:43,838 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-482.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-482.jpg' 2016-05-05 04:02:43,839 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-575.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-575.jpg' 2016-05-05 04:02:43,840 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-533.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-533.jpg' 2016-05-05 04:02:43,841 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-221.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-221.jpg' 2016-05-05 04:02:43,842 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-614.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-614.jpg' 2016-05-05 04:02:43,843 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-133.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-133.jpg' 2016-05-05 04:02:43,844 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-267.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-267.jpg' 2016-05-05 04:02:43,845 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-79.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-79.jpg' 2016-05-05 04:02:43,846 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-172.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-172.jpg' 2016-05-05 04:02:43,847 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-397.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-397.jpg' 2016-05-05 04:02:43,848 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-153.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-153.jpg' 2016-05-05 04:02:43,850 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-436.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-436.jpg' 2016-05-05 04:02:43,851 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-103.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-103.jpg' 2016-05-05 04:02:43,852 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-368.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-368.jpg' 2016-05-05 04:02:43,853 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-592.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-592.jpg' 2016-05-05 04:02:43,854 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-241.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-241.jpg' 2016-05-05 04:02:43,856 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-392.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-392.jpg' 2016-05-05 04:02:43,857 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-339.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-339.jpg' 2016-05-05 04:02:43,858 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-535.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-535.jpg' 2016-05-05 04:02:43,859 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-451.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-451.jpg' 2016-05-05 04:02:43,860 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-157.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-157.jpg' 2016-05-05 04:02:43,861 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-446.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-446.jpg' 2016-05-05 04:02:43,862 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-163.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-163.jpg' 2016-05-05 04:02:43,863 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-33.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-33.jpg' 2016-05-05 04:02:43,864 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-348.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-348.jpg' 2016-05-05 04:02:43,865 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-17.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-17.jpg' 2016-05-05 04:02:43,866 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-78.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-78.jpg' 2016-05-05 04:02:43,867 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-259.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-259.jpg' 2016-05-05 04:02:43,869 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-338.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-338.jpg' 2016-05-05 04:02:43,870 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-88.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-88.jpg' 2016-05-05 04:02:43,870 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-24.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-24.jpg' 2016-05-05 04:02:43,871 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-370.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-370.jpg' 2016-05-05 04:02:43,872 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-208.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-208.jpg' 2016-05-05 04:02:43,873 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-150.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-150.jpg' 2016-05-05 04:02:43,874 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-90.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-90.jpg' 2016-05-05 04:02:43,875 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-280.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-280.jpg' 2016-05-05 04:02:43,876 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-224.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-224.jpg' 2016-05-05 04:02:43,877 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-499.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-499.jpg' 2016-05-05 04:02:43,878 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-359.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-359.jpg' 2016-05-05 04:02:43,879 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-341.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-341.jpg' 2016-05-05 04:02:43,880 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-302.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-302.jpg' 2016-05-05 04:02:43,881 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-197.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-197.jpg' 2016-05-05 04:02:43,883 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-268.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-268.jpg' 2016-05-05 04:02:43,884 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-430.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-430.jpg' 2016-05-05 04:02:43,885 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-349.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-349.jpg' 2016-05-05 04:02:43,886 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-110.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-110.jpg' 2016-05-05 04:02:43,887 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-545.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-545.jpg' 2016-05-05 04:02:43,888 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-38.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-38.jpg' 2016-05-05 04:02:43,889 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-473.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-473.jpg' 2016-05-05 04:02:43,890 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-604.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-604.jpg' 2016-05-05 04:02:43,891 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-556.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-556.jpg' 2016-05-05 04:02:43,892 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-581.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-581.jpg' 2016-05-05 04:02:43,893 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-34.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-34.jpg' 2016-05-05 04:02:43,895 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-328.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-328.jpg' 2016-05-05 04:02:43,896 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-334.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-334.jpg' 2016-05-05 04:02:43,897 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-50.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-50.jpg' 2016-05-05 04:02:43,898 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-250.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-250.jpg' 2016-05-05 04:02:43,899 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-340.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-340.jpg' 2016-05-05 04:02:43,900 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-183.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-183.jpg' 2016-05-05 04:02:43,901 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-344.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-344.jpg' 2016-05-05 04:02:43,902 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-166.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-166.jpg' 2016-05-05 04:02:43,903 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-53.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-53.jpg' 2016-05-05 04:02:43,904 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-421.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-421.jpg' 2016-05-05 04:02:43,905 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-493.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-493.jpg' 2016-05-05 04:02:43,906 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-111.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-111.jpg' 2016-05-05 04:02:43,907 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-532.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-532.jpg' 2016-05-05 04:02:43,907 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-299.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-299.jpg' 2016-05-05 04:02:43,909 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-244.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-244.jpg' 2016-05-05 04:02:43,910 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-585.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-585.jpg' 2016-05-05 04:02:43,911 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-170.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-170.jpg' 2016-05-05 04:02:43,912 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-354.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-354.jpg' 2016-05-05 04:02:43,913 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-59.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-59.jpg' 2016-05-05 04:02:43,914 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-579.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-579.jpg' 2016-05-05 04:02:43,915 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-386.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-386.jpg' 2016-05-05 04:02:43,916 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-126.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-126.jpg' 2016-05-05 04:02:43,917 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-226.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-226.jpg' 2016-05-05 04:02:43,918 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-71.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-71.jpg' 2016-05-05 04:02:43,919 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-89.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-89.jpg' 2016-05-05 04:02:43,921 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-457.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-457.jpg' 2016-05-05 04:02:43,922 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-41.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-41.jpg' 2016-05-05 04:02:43,923 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-395.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-395.jpg' 2016-05-05 04:02:43,924 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-294.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-294.jpg' 2016-05-05 04:02:43,925 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-263.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-263.jpg' 2016-05-05 04:02:43,926 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-569.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-569.jpg' 2016-05-05 04:02:43,927 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-108.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-108.jpg' 2016-05-05 04:02:43,928 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-46.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-46.jpg' 2016-05-05 04:02:43,929 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-502.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-502.jpg' 2016-05-05 04:02:43,930 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-36.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-36.jpg' 2016-05-05 04:02:43,931 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-456.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-456.jpg' 2016-05-05 04:02:43,932 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-26.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-26.jpg' 2016-05-05 04:02:43,933 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-438.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-438.jpg' 2016-05-05 04:02:43,934 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-431.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-431.jpg' 2016-05-05 04:02:43,935 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-251.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-251.jpg' 2016-05-05 04:02:43,936 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-605.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-605.jpg' 2016-05-05 04:02:43,937 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-325.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-325.jpg' 2016-05-05 04:02:43,938 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-369.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-369.jpg' 2016-05-05 04:02:43,939 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-222.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-222.jpg' 2016-05-05 04:02:43,941 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-471.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-471.jpg' 2016-05-05 04:02:43,941 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-309.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-309.jpg' 2016-05-05 04:02:43,942 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-227.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-227.jpg' 2016-05-05 04:02:43,943 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-415.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-415.jpg' 2016-05-05 04:02:43,945 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-200.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-200.jpg' 2016-05-05 04:02:43,945 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-432.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-432.jpg' 2016-05-05 04:02:43,946 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-407.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-407.jpg' 2016-05-05 04:02:43,947 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-154.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-154.jpg' 2016-05-05 04:02:43,948 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-283.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-283.jpg' 2016-05-05 04:02:43,949 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-467.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-467.jpg' 2016-05-05 04:02:43,951 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-412.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-412.jpg' 2016-05-05 04:02:43,952 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-419.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-419.jpg' 2016-05-05 04:02:43,953 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-552.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-552.jpg' 2016-05-05 04:02:43,954 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-95.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-95.jpg' 2016-05-05 04:02:43,955 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-470.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-470.jpg' 2016-05-05 04:02:43,956 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-332.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-332.jpg' 2016-05-05 04:02:43,957 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-139.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-139.jpg' 2016-05-05 04:02:43,958 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-537.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-537.jpg' 2016-05-05 04:02:43,958 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-554.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-554.jpg' 2016-05-05 04:02:43,960 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-142.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-142.jpg' 2016-05-05 04:02:43,961 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-381.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-381.jpg' 2016-05-05 04:02:43,962 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-10.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-10.jpg' 2016-05-05 04:02:43,962 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-56.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-56.jpg' 2016-05-05 04:02:43,963 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-2.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-2.jpg' 2016-05-05 04:02:43,965 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-121.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-121.jpg' 2016-05-05 04:02:43,966 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-202.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-202.jpg' 2016-05-05 04:02:43,967 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-63.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-63.jpg' 2016-05-05 04:02:43,968 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-483.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-483.jpg' 2016-05-05 04:02:43,969 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-526.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-526.jpg' 2016-05-05 04:02:43,970 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-454.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-454.jpg' 2016-05-05 04:02:43,971 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-292.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-292.jpg' 2016-05-05 04:02:43,972 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-195.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-195.jpg' 2016-05-05 04:02:43,973 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-379.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-379.jpg' 2016-05-05 04:02:43,974 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-336.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-336.jpg' 2016-05-05 04:02:43,975 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-99.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-99.jpg' 2016-05-05 04:02:43,975 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-134.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-134.jpg' 2016-05-05 04:02:43,976 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-602.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-602.jpg' 2016-05-05 04:02:43,977 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-563.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-563.jpg' 2016-05-05 04:02:43,978 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-527.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-527.jpg' 2016-05-05 04:02:43,979 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-572.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-572.jpg' 2016-05-05 04:02:43,981 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-51.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-51.jpg' 2016-05-05 04:02:43,982 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-353.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-353.jpg' 2016-05-05 04:02:43,983 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-109.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-109.jpg' 2016-05-05 04:02:43,984 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-560.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-560.jpg' 2016-05-05 04:02:43,985 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-551.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-551.jpg' 2016-05-05 04:02:43,986 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-504.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-504.jpg' 2016-05-05 04:02:43,987 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-308.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-308.jpg' 2016-05-05 04:02:43,988 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-411.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-411.jpg' 2016-05-05 04:02:43,989 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-149.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-149.jpg' 2016-05-05 04:02:43,990 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-391.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-391.jpg' 2016-05-05 04:02:43,991 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-534.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-534.jpg' 2016-05-05 04:02:43,992 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-165.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-165.jpg' 2016-05-05 04:02:43,993 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-476.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-476.jpg' 2016-05-05 04:02:43,994 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-97.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-97.jpg' 2016-05-05 04:02:43,995 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-3.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-3.jpg' 2016-05-05 04:02:43,997 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-460.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-460.jpg' 2016-05-05 04:02:43,998 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-519.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-519.jpg' 2016-05-05 04:02:43,998 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-64.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-64.jpg' 2016-05-05 04:02:44,000 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-261.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-261.jpg' 2016-05-05 04:02:44,001 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-158.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-158.jpg' 2016-05-05 04:02:44,002 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-343.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-343.jpg' 2016-05-05 04:02:44,003 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-146.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-146.jpg' 2016-05-05 04:02:44,004 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-45.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-45.jpg' 2016-05-05 04:02:44,005 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-565.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-565.jpg' 2016-05-05 04:02:44,006 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-212.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-212.jpg' 2016-05-05 04:02:44,007 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-12.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-12.jpg' 2016-05-05 04:02:44,008 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-409.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-409.jpg' 2016-05-05 04:02:44,009 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-125.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-125.jpg' 2016-05-05 04:02:44,010 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-478.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-478.jpg' 2016-05-05 04:02:44,011 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-106.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-106.jpg' 2016-05-05 04:02:44,012 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-132.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-132.jpg' 2016-05-05 04:02:44,013 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-543.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-543.jpg' 2016-05-05 04:02:44,014 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-608.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-608.jpg' 2016-05-05 04:02:44,015 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-465.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-465.jpg' 2016-05-05 04:02:44,017 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-408.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-408.jpg' 2016-05-05 04:02:44,017 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-540.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-540.jpg' 2016-05-05 04:02:44,018 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-137.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-137.jpg' 2016-05-05 04:02:44,019 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-143.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-143.jpg' 2016-05-05 04:02:44,021 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-54.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-54.jpg' 2016-05-05 04:02:44,021 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-589.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-589.jpg' 2016-05-05 04:02:44,022 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-396.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-396.jpg' 2016-05-05 04:02:44,024 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-231.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-231.jpg' 2016-05-05 04:02:44,025 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-458.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-458.jpg' 2016-05-05 04:02:44,026 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-128.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-128.jpg' 2016-05-05 04:02:44,027 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-566.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-566.jpg' 2016-05-05 04:02:44,028 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-402.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-402.jpg' 2016-05-05 04:02:44,029 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-123.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-123.jpg' 2016-05-05 04:02:44,030 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-304.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-304.jpg' 2016-05-05 04:02:44,031 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-296.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-296.jpg' 2016-05-05 04:02:44,032 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-558.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-558.jpg' 2016-05-05 04:02:44,033 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-276.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-276.jpg' 2016-05-05 04:02:44,034 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-174.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-174.jpg' 2016-05-05 04:02:44,035 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-167.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-167.jpg' 2016-05-05 04:02:44,036 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-249.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-249.jpg' 2016-05-05 04:02:44,037 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-603.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-603.jpg' 2016-05-05 04:02:44,038 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-445.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-445.jpg' 2016-05-05 04:02:44,039 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-484.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-484.jpg' 2016-05-05 04:02:44,040 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-92.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-92.jpg' 2016-05-05 04:02:44,041 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-8.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-8.jpg' 2016-05-05 04:02:44,042 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-104.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-104.jpg' 2016-05-05 04:02:44,043 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-107.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-107.jpg' 2016-05-05 04:02:44,044 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-148.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-148.jpg' 2016-05-05 04:02:44,045 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-178.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-178.jpg' 2016-05-05 04:02:44,046 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-463.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-463.jpg' 2016-05-05 04:02:44,047 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-215.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-215.jpg' 2016-05-05 04:02:44,049 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-70.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-70.jpg' 2016-05-05 04:02:44,050 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-511.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-511.jpg' 2016-05-05 04:02:44,051 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-86.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-86.jpg' 2016-05-05 04:02:44,052 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-85.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-85.jpg' 2016-05-05 04:02:44,053 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-568.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-568.jpg' 2016-05-05 04:02:44,054 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-371.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-371.jpg' 2016-05-05 04:02:44,055 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-475.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-475.jpg' 2016-05-05 04:02:44,056 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-345.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-345.jpg' 2016-05-05 04:02:44,057 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-117.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-117.jpg' 2016-05-05 04:02:44,058 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-91.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-91.jpg' 2016-05-05 04:02:44,059 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-505.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-505.jpg' 2016-05-05 04:02:44,060 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-562.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-562.jpg' 2016-05-05 04:02:44,061 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-520.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-520.jpg' 2016-05-05 04:02:44,062 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-594.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-594.jpg' 2016-05-05 04:02:44,063 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-130.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-130.jpg' 2016-05-05 04:02:44,064 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-240.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-240.jpg' 2016-05-05 04:02:44,065 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-399.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-399.jpg' 2016-05-05 04:02:44,066 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-541.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-541.jpg' 2016-05-05 04:02:44,067 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-477.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-477.jpg' 2016-05-05 04:02:44,069 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-232.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-232.jpg' 2016-05-05 04:02:44,070 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-156.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-156.jpg' 2016-05-05 04:02:44,071 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-209.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-209.jpg' 2016-05-05 04:02:44,072 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-141.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-141.jpg' 2016-05-05 04:02:44,073 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-301.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-301.jpg' 2016-05-05 04:02:44,074 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-376.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-376.jpg' 2016-05-05 04:02:44,075 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-217.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-217.jpg' 2016-05-05 04:02:44,076 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-315.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-315.jpg' 2016-05-05 04:02:44,076 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-577.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-577.jpg' 2016-05-05 04:02:44,077 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-254.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-254.jpg' 2016-05-05 04:02:44,078 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-488.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-488.jpg' 2016-05-05 04:02:44,078 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-93.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-93.jpg' 2016-05-05 04:02:44,079 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-25.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-25.jpg' 2016-05-05 04:02:44,080 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-47.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-47.jpg' 2016-05-05 04:02:44,081 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-131.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-131.jpg' 2016-05-05 04:02:44,082 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-597.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-597.jpg' 2016-05-05 04:02:44,083 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-204.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-204.jpg' 2016-05-05 04:02:44,084 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-67.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-67.jpg' 2016-05-05 04:02:44,085 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-512.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-512.jpg' 2016-05-05 04:02:44,086 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-546.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-546.jpg' 2016-05-05 04:02:44,087 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-236.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-236.jpg' 2016-05-05 04:02:44,088 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-228.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-228.jpg' 2016-05-05 04:02:44,089 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-363.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-363.jpg' 2016-05-05 04:02:44,091 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-377.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-377.jpg' 2016-05-05 04:02:44,092 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-237.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-237.jpg' 2016-05-05 04:02:44,093 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-452.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-452.jpg' 2016-05-05 04:02:44,094 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-487.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-487.jpg' 2016-05-05 04:02:44,095 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-427.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-427.jpg' 2016-05-05 04:02:44,096 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-286.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-286.jpg' 2016-05-05 04:02:44,097 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-160.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-160.jpg' 2016-05-05 04:02:44,098 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-398.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-398.jpg' 2016-05-05 04:02:44,099 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-472.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-472.jpg' 2016-05-05 04:02:44,100 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-500.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-500.jpg' 2016-05-05 04:02:44,101 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-447.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-447.jpg' 2016-05-05 04:02:44,102 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-474.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-474.jpg' 2016-05-05 04:02:44,103 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-521.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-521.jpg' 2016-05-05 04:02:44,104 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-120.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-120.jpg' 2016-05-05 04:02:44,105 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-42.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-42.jpg' 2016-05-05 04:02:44,106 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-468.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-468.jpg' 2016-05-05 04:02:44,107 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-35.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-35.jpg' 2016-05-05 04:02:44,108 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-364.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-364.jpg' 2016-05-05 04:02:44,109 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-317.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-317.jpg' 2016-05-05 04:02:44,110 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-507.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-507.jpg' 2016-05-05 04:02:44,111 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-260.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-260.jpg' 2016-05-05 04:02:44,112 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-147.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-147.jpg' 2016-05-05 04:02:44,113 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-607.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-607.jpg' 2016-05-05 04:02:44,114 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-4.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-4.jpg' 2016-05-05 04:02:44,116 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-319.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-319.jpg' 2016-05-05 04:02:44,117 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-0.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-0.jpg' 2016-05-05 04:02:44,118 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-374.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-374.jpg' 2016-05-05 04:02:44,119 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-49.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-49.jpg' 2016-05-05 04:02:44,120 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-144.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-144.jpg' 2016-05-05 04:02:44,121 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-82.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-82.jpg' 2016-05-05 04:02:44,122 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-480.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-480.jpg' 2016-05-05 04:02:44,123 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-331.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-331.jpg' 2016-05-05 04:02:44,124 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-352.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-352.jpg' 2016-05-05 04:02:44,125 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-164.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-164.jpg' 2016-05-05 04:02:44,126 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-14.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-14.jpg' 2016-05-05 04:02:44,127 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-27.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-27.jpg' 2016-05-05 04:02:44,128 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-433.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-433.jpg' 2016-05-05 04:02:44,129 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-406.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-406.jpg' 2016-05-05 04:02:44,130 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-303.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-303.jpg' 2016-05-05 04:02:44,131 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-424.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-424.jpg' 2016-05-05 04:02:44,132 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-55.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-55.jpg' 2016-05-05 04:02:44,133 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-57.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-57.jpg' 2016-05-05 04:02:44,134 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-162.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-162.jpg' 2016-05-05 04:02:44,135 - octoprint.timelapse - ERROR - Error while processing file extrusion_steps_mini_20160505033958-335.jpg during cleanup Traceback (most recent call last): File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.2.11-py2.7.egg/octoprint/timelapse.py", line 154, in delete_old_unrendered_timelapses if os.path.getmtime(path) < cutoff: File "/home/pi/oprint/lib/python2.7/genericpath.py", line 54, in getmtime return os.stat(filename).st_mtime OSError: [Errno 2] No such file or directory: '/home/pi/.octoprint/timelapse/tmp/extrusion_steps_mini_20160505033958-335.jpg' contents here
OSError
def interestingness(vis: Vis, ldf: LuxDataFrame) -> int: """ Compute the interestingness score of the vis. The interestingness metric is dependent on the vis type. Parameters ---------- vis : Vis ldf : LuxDataFrame Returns ------- int Interestingness Score """ if vis.data is None or len(vis.data) == 0: return -1 # raise Exception("Vis.data needs to be populated before interestingness can be computed. Run Executor.execute(vis,ldf).") try: filter_specs = utils.get_filter_specs(vis._inferred_intent) vis_attrs_specs = utils.get_attrs_specs(vis._inferred_intent) n_dim = vis._ndim n_msr = vis._nmsr n_filter = len(filter_specs) attr_specs = [ clause for clause in vis_attrs_specs if clause.attribute != "Record" ] dimension_lst = vis.get_attr_by_data_model("dimension") measure_lst = vis.get_attr_by_data_model("measure") v_size = len(vis.data) if ( n_dim == 1 and (n_msr == 0 or n_msr == 1) and ldf.current_vis is not None and vis.get_attr_by_channel("y")[0].data_type == "quantitative" and len(ldf.current_vis) == 1 and ldf.current_vis[0].mark == "line" and len(get_filter_specs(ldf.intent)) > 0 ): query_vc = VisList(ldf.current_vis, ldf) query_vis = query_vc[0] preprocess(query_vis) preprocess(vis) return 1 - euclidean_dist(query_vis, vis) # Line/Bar Chart # print("r:", n_record, "m:", n_msr, "d:",n_dim) if n_dim == 1 and (n_msr == 0 or n_msr == 1): if v_size < 2: return -1 if n_filter == 0: return unevenness(vis, ldf, measure_lst, dimension_lst) elif n_filter == 1: return deviation_from_overall( vis, ldf, filter_specs, measure_lst[0].attribute ) # Histogram elif n_dim == 0 and n_msr == 1: if v_size < 2: return -1 if n_filter == 0 and "Number of Records" in vis.data: if "Number of Records" in vis.data: v = vis.data["Number of Records"] return skewness(v) elif n_filter == 1 and "Number of Records" in vis.data: return deviation_from_overall( vis, ldf, filter_specs, "Number of Records" ) return -1 # Scatter Plot elif n_dim == 0 and n_msr == 2: if v_size < 10: return -1 if vis.mark == "heatmap": return weighted_correlation( vis.data["xBinStart"], vis.data["yBinStart"], vis.data["count"] ) if n_filter == 1: v_filter_size = get_filtered_size(filter_specs, vis.data) sig = v_filter_size / v_size else: sig = 1 return sig * monotonicity(vis, attr_specs) # Scatterplot colored by Dimension elif n_dim == 1 and n_msr == 2: if v_size < 10: return -1 color_attr = vis.get_attr_by_channel("color")[0].attribute C = ldf.cardinality[color_attr] if C < 40: return 1 / C else: return -1 # Scatterplot colored by dimension elif n_dim == 1 and n_msr == 2: return 0.2 # Scatterplot colored by measure elif n_msr == 3: return 0.1 # colored line and barchart cases elif vis.mark == "line" and n_dim == 2: return 0.15 # for colored bar chart, scoring based on Chi-square test for independence score. # gives higher scores to colored bar charts with fewer total categories as these charts are easier to read and thus more useful for users elif vis.mark == "bar" and n_dim == 2: from scipy.stats import chi2_contingency measure_column = vis.get_attr_by_data_model("measure")[0].attribute dimension_columns = vis.get_attr_by_data_model("dimension") groupby_column = dimension_columns[0].attribute color_column = dimension_columns[1].attribute contingency_tbl = pd.crosstab( vis.data[groupby_column], vis.data[color_column], values=vis.data[measure_column], aggfunc=sum, ) try: color_cardinality = ldf.cardinality[color_column] groupby_cardinality = ldf.cardinality[groupby_column] # scale down score based on number of categories chi2_score = chi2_contingency(contingency_tbl)[0] * 0.9 ** ( color_cardinality + groupby_cardinality ) score = min(0.10, chi2_score) except (ValueError, KeyError): # ValueError results if an entire column of the contingency table is 0, can happen if an applied filter results in a category having no counts score = -1 return score # Default else: return -1 except: # Supress interestingness related issues warnings.warn(f"An error occurred when computing interestingness for: {vis}") return -1
def interestingness(vis: Vis, ldf: LuxDataFrame) -> int: """ Compute the interestingness score of the vis. The interestingness metric is dependent on the vis type. Parameters ---------- vis : Vis ldf : LuxDataFrame Returns ------- int Interestingness Score """ if vis.data is None or len(vis.data) == 0: return -1 # raise Exception("Vis.data needs to be populated before interestingness can be computed. Run Executor.execute(vis,ldf).") n_dim = 0 n_msr = 0 filter_specs = utils.get_filter_specs(vis._inferred_intent) vis_attrs_specs = utils.get_attrs_specs(vis._inferred_intent) record_attrs = list( filter( lambda x: x.attribute == "Record" and x.data_model == "measure", vis_attrs_specs, ) ) n_record = len(record_attrs) for clause in vis_attrs_specs: if clause.attribute != "Record": if clause.data_model == "dimension": n_dim += 1 if clause.data_model == "measure": n_msr += 1 n_filter = len(filter_specs) attr_specs = [clause for clause in vis_attrs_specs if clause.attribute != "Record"] dimension_lst = vis.get_attr_by_data_model("dimension") measure_lst = vis.get_attr_by_data_model("measure") v_size = len(vis.data) if ( n_dim == 1 and (n_msr == 0 or n_msr == 1) and ldf.current_vis is not None and vis.get_attr_by_channel("y")[0].data_type == "quantitative" and len(ldf.current_vis) == 1 and ldf.current_vis[0].mark == "line" and len(get_filter_specs(ldf.intent)) > 0 ): query_vc = VisList(ldf.current_vis, ldf) query_vis = query_vc[0] preprocess(query_vis) preprocess(vis) return 1 - euclidean_dist(query_vis, vis) # Line/Bar Chart # print("r:", n_record, "m:", n_msr, "d:",n_dim) if n_dim == 1 and (n_msr == 0 or n_msr == 1): if v_size < 2: return -1 if n_filter == 0: return unevenness(vis, ldf, measure_lst, dimension_lst) elif n_filter == 1: return deviation_from_overall( vis, ldf, filter_specs, measure_lst[0].attribute ) # Histogram elif n_dim == 0 and n_msr == 1: if v_size < 2: return -1 if n_filter == 0 and "Number of Records" in vis.data: if "Number of Records" in vis.data: v = vis.data["Number of Records"] return skewness(v) elif n_filter == 1 and "Number of Records" in vis.data: return deviation_from_overall(vis, ldf, filter_specs, "Number of Records") return -1 # Scatter Plot elif n_dim == 0 and n_msr == 2: if v_size < 10: return -1 if vis.mark == "heatmap": return weighted_correlation( vis.data["xBinStart"], vis.data["yBinStart"], vis.data["count"] ) if n_filter == 1: v_filter_size = get_filtered_size(filter_specs, vis.data) sig = v_filter_size / v_size else: sig = 1 return sig * monotonicity(vis, attr_specs) # Scatterplot colored by Dimension elif n_dim == 1 and n_msr == 2: if v_size < 10: return -1 color_attr = vis.get_attr_by_channel("color")[0].attribute C = ldf.cardinality[color_attr] if C < 40: return 1 / C else: return -1 # Scatterplot colored by dimension elif n_dim == 1 and n_msr == 2: return 0.2 # Scatterplot colored by measure elif n_msr == 3: return 0.1 # colored line and barchart cases elif vis.mark == "line" and n_dim == 2: return 0.15 # for colored bar chart, scoring based on Chi-square test for independence score. # gives higher scores to colored bar charts with fewer total categories as these charts are easier to read and thus more useful for users elif vis.mark == "bar" and n_dim == 2: from scipy.stats import chi2_contingency measure_column = vis.get_attr_by_data_model("measure")[0].attribute dimension_columns = vis.get_attr_by_data_model("dimension") groupby_column = dimension_columns[0].attribute color_column = dimension_columns[1].attribute contingency_table = [] groupby_cardinality = ldf.cardinality[groupby_column] groupby_unique_vals = ldf.unique_values[groupby_column] for c in range(0, groupby_cardinality): contingency_table.append( vis.data[vis.data[groupby_column] == groupby_unique_vals[c]][ measure_column ] ) score = 0.12 # ValueError results if an entire column of the contingency table is 0, can happen if an applied filter results in # a category having no counts try: color_cardinality = ldf.cardinality[color_column] # scale down score based on number of categories chi2_score = chi2_contingency(contingency_table)[0] * 0.9 ** ( color_cardinality + groupby_cardinality ) score = min(0.10, chi2_score) except ValueError: pass return score # Default else: return -1
https://github.com/lux-org/lux/issues/189
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\formatters.py:345: UserWarning: Unexpected error in rendering Lux widget and recommendations. Falling back to Pandas display. Please report the following issue on Github: https://github.com/lux-org/lux/issues C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py:689: UserWarning:Traceback (most recent call last): File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py", line 2898, in get_loc return self._engine.get_loc(casted_key) File "pandas\_libs\index.pyx", line 70, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\index.pyx", line 101, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\hashtable_class_helper.pxi", line 1032, in pandas._libs.hashtable.Int64HashTable.get_item File "pandas\_libs\hashtable_class_helper.pxi", line 1039, in pandas._libs.hashtable.Int64HashTable.get_item KeyError: 0 The above exception was the direct cause of the following exception: Traceback (most recent call last): File "C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py", line 641, in _repr_html_ self.maintain_recs() File "C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py", line 472, in maintain_recs custom_action_collection = custom_actions(rec_df) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\action\custom.py", line 75, in custom_actions recommendation = lux.actions.__getattr__(action_name).action(ldf) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\action\enhance.py", line 67, in enhance vis.score = interestingness(vis, ldf) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\interestingness\interestingness.py", line 149, in interestingness chi2_score = chi2_contingency(contingency_table)[0] * 0.9 ** ( File "C:\ProgramData\Anaconda3\lib\site-packages\scipy\stats\contingency.py", line 241, in chi2_contingency observed = np.asarray(observed) File "C:\ProgramData\Anaconda3\lib\site-packages\numpy\core\_asarray.py", line 85, in asarray return array(a, dtype, copy=False, order=order) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\series.py", line 882, in __getitem__ return self._get_value(key) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\series.py", line 990, in _get_value loc = self.index.get_loc(label) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py", line 2900, in get_loc raise KeyError(key) from err KeyError: 0
KeyError
def parse(intent: List[Union[Clause, str]]) -> List[Clause]: """ Given the string description from a list of input Clauses (intent), assign the appropriate clause.attribute, clause.filter_op, and clause.value. Parameters ---------- intent : List[Clause] Underspecified list of lux.Clause objects. Returns ------- List[Clause] Parsed list of lux.Clause objects. """ if type(intent) != list: raise TypeError( "Input intent must be a list consisting of string descriptions or lux.Clause objects." "\nSee more at: https://lux-api.readthedocs.io/en/latest/source/guide/intent.html" ) import re # intent = ldf.get_context() new_context = [] # checks for and converts users' string inputs into lux specifications for clause in intent: valid_values = [] if isinstance(clause, list): valid_values = [] for v in clause: # and v in list(ldf.columns): #TODO: Move validation check to Validator if type(v) is str: valid_values.append(v) temp_spec = Clause(attribute=valid_values) new_context.append(temp_spec) elif isinstance(clause, str): # case where user specifies a filter if "=" in clause: eqInd = clause.index("=") var = clause[0:eqInd] if "|" in clause: values = clause[eqInd + 1 :].split("|") for v in values: # if v in ldf.unique_values[var]: #TODO: Move validation check to Validator valid_values.append(v) else: valid_values = clause[eqInd + 1 :] # if var in list(ldf.columns): #TODO: Move validation check to Validator temp_spec = Clause(attribute=var, filter_op="=", value=valid_values) new_context.append(temp_spec) # case where user specifies a variable else: if "|" in clause: values = clause.split("|") for v in values: # if v in list(ldf.columns): #TODO: Move validation check to Validator valid_values.append(v) else: valid_values = clause temp_spec = Clause(attribute=valid_values) new_context.append(temp_spec) elif type(clause) is Clause: new_context.append(clause) intent = new_context # ldf._intent = new_context for clause in intent: if clause.description: # TODO: Move validation check to Validator # if ((clause.description in list(ldf.columns)) or clause.description == "?"):# if clause.description in the list of attributes # clause.description contain ">","<". or "=" if type(clause.description) == str and any( ext in [">", "<", "=", "!="] for ext in clause.description ): # then parse it and assign to clause.attribute, clause.filter_op, clause.values clause.filter_op = re.findall( r"/.*/|>|=|<|>=|<=|!=", clause.description )[0] split_description = clause.description.split(clause.filter_op) clause.attribute = split_description[0] clause.value = split_description[1] if re.match(r"^-?\d+(?:\.\d+)?$", clause.value): clause.value = float(clause.value) elif type(clause.description) == str: clause.attribute = clause.description elif type(clause.description) == list: clause.attribute = clause.description else: # then it is probably a value clause.value = clause.description return intent
def parse(intent: List[Union[Clause, str]]) -> List[Clause]: """ Given the string description from a list of input Clauses (intent), assign the appropriate clause.attribute, clause.filter_op, and clause.value. Parameters ---------- intent : List[Clause] Underspecified list of lux.Clause objects. Returns ------- List[Clause] Parsed list of lux.Clause objects. """ if type(intent) != list: raise TypeError( "Input intent must be a list consisting of string descriptions or lux.Clause objects." "\nSee more at: https://lux-api.readthedocs.io/en/latest/source/guide/intent.html" ) import re # intent = ldf.get_context() new_context = [] # checks for and converts users' string inputs into lux specifications for clause in intent: valid_values = [] if isinstance(clause, list): valid_values = [] for v in clause: # and v in list(ldf.columns): #TODO: Move validation check to Validator if type(v) is str: valid_values.append(v) temp_spec = Clause(attribute=valid_values) new_context.append(temp_spec) elif isinstance(clause, str): # case where user specifies a filter if "=" in clause: eqInd = clause.index("=") var = clause[0:eqInd] if "|" in clause: values = clause[eqInd + 1 :].split("|") for v in values: # if v in ldf.unique_values[var]: #TODO: Move validation check to Validator valid_values.append(v) else: valid_values = clause[eqInd + 1 :] # if var in list(ldf.columns): #TODO: Move validation check to Validator temp_spec = Clause(attribute=var, filter_op="=", value=valid_values) new_context.append(temp_spec) # case where user specifies a variable else: if "|" in clause: values = clause.split("|") for v in values: # if v in list(ldf.columns): #TODO: Move validation check to Validator valid_values.append(v) else: valid_values = clause temp_spec = Clause(attribute=valid_values) new_context.append(temp_spec) elif type(clause) is Clause: new_context.append(clause) intent = new_context # ldf._intent = new_context for clause in intent: if clause.description: # TODO: Move validation check to Validator # if ((clause.description in list(ldf.columns)) or clause.description == "?"):# if clause.description in the list of attributes # clause.description contain ">","<". or "=" if any(ext in [">", "<", "=", "!="] for ext in clause.description): # then parse it and assign to clause.attribute, clause.filter_op, clause.values clause.filter_op = re.findall( r"/.*/|>|=|<|>=|<=|!=", clause.description )[0] split_description = clause.description.split(clause.filter_op) clause.attribute = split_description[0] clause.value = split_description[1] if re.match(r"^-?\d+(?:\.\d+)?$", clause.value): clause.value = float(clause.value) elif type(clause.description) == str: clause.attribute = clause.description elif type(clause.description) == list: clause.attribute = clause.description # else: # then it is probably a value # clause.values = clause.description return intent
https://github.com/lux-org/lux/issues/189
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\formatters.py:345: UserWarning: Unexpected error in rendering Lux widget and recommendations. Falling back to Pandas display. Please report the following issue on Github: https://github.com/lux-org/lux/issues C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py:689: UserWarning:Traceback (most recent call last): File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py", line 2898, in get_loc return self._engine.get_loc(casted_key) File "pandas\_libs\index.pyx", line 70, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\index.pyx", line 101, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\hashtable_class_helper.pxi", line 1032, in pandas._libs.hashtable.Int64HashTable.get_item File "pandas\_libs\hashtable_class_helper.pxi", line 1039, in pandas._libs.hashtable.Int64HashTable.get_item KeyError: 0 The above exception was the direct cause of the following exception: Traceback (most recent call last): File "C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py", line 641, in _repr_html_ self.maintain_recs() File "C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py", line 472, in maintain_recs custom_action_collection = custom_actions(rec_df) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\action\custom.py", line 75, in custom_actions recommendation = lux.actions.__getattr__(action_name).action(ldf) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\action\enhance.py", line 67, in enhance vis.score = interestingness(vis, ldf) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\interestingness\interestingness.py", line 149, in interestingness chi2_score = chi2_contingency(contingency_table)[0] * 0.9 ** ( File "C:\ProgramData\Anaconda3\lib\site-packages\scipy\stats\contingency.py", line 241, in chi2_contingency observed = np.asarray(observed) File "C:\ProgramData\Anaconda3\lib\site-packages\numpy\core\_asarray.py", line 85, in asarray return array(a, dtype, copy=False, order=order) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\series.py", line 882, in __getitem__ return self._get_value(key) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\series.py", line 990, in _get_value loc = self.index.get_loc(label) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py", line 2900, in get_loc raise KeyError(key) from err KeyError: 0
KeyError
def __init__(self, intent, source=None, title="", score=0.0): self._intent = intent # user's original intent to Vis self._inferred_intent = ( intent # re-written, expanded version of user's original intent ) self._source = source # original data attached to the Vis self._vis_data = None # processed data for Vis (e.g., selected, aggregated, binned) self._code = None self._mark = "" self._min_max = {} self._postbin = None self.title = title self.score = score self.refresh_source(self._source)
def __init__(self, intent, source=None, title="", score=0.0): self._intent = intent # This is the user's original intent to Vis self._inferred_intent = intent # This is the re-written, expanded version of user's original intent (include inferred vis info) self._source = source # This is the original data that is attached to the Vis self._vis_data = None # This is the data that represents the Vis (e.g., selected, aggregated, binned) self._code = None self._mark = "" self._min_max = {} self._postbin = None self.title = title self.score = score self.refresh_source(self._source)
https://github.com/lux-org/lux/issues/189
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\formatters.py:345: UserWarning: Unexpected error in rendering Lux widget and recommendations. Falling back to Pandas display. Please report the following issue on Github: https://github.com/lux-org/lux/issues C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py:689: UserWarning:Traceback (most recent call last): File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py", line 2898, in get_loc return self._engine.get_loc(casted_key) File "pandas\_libs\index.pyx", line 70, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\index.pyx", line 101, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\hashtable_class_helper.pxi", line 1032, in pandas._libs.hashtable.Int64HashTable.get_item File "pandas\_libs\hashtable_class_helper.pxi", line 1039, in pandas._libs.hashtable.Int64HashTable.get_item KeyError: 0 The above exception was the direct cause of the following exception: Traceback (most recent call last): File "C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py", line 641, in _repr_html_ self.maintain_recs() File "C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py", line 472, in maintain_recs custom_action_collection = custom_actions(rec_df) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\action\custom.py", line 75, in custom_actions recommendation = lux.actions.__getattr__(action_name).action(ldf) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\action\enhance.py", line 67, in enhance vis.score = interestingness(vis, ldf) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\interestingness\interestingness.py", line 149, in interestingness chi2_score = chi2_contingency(contingency_table)[0] * 0.9 ** ( File "C:\ProgramData\Anaconda3\lib\site-packages\scipy\stats\contingency.py", line 241, in chi2_contingency observed = np.asarray(observed) File "C:\ProgramData\Anaconda3\lib\site-packages\numpy\core\_asarray.py", line 85, in asarray return array(a, dtype, copy=False, order=order) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\series.py", line 882, in __getitem__ return self._get_value(key) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\series.py", line 990, in _get_value loc = self.index.get_loc(label) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py", line 2900, in get_loc raise KeyError(key) from err KeyError: 0
KeyError
def __repr__(self): all_clause = all([isinstance(unit, lux.Clause) for unit in self._inferred_intent]) if all_clause: filter_intents = None channels, additional_channels = [], [] for clause in self._inferred_intent: if hasattr(clause, "value"): if clause.value != "": filter_intents = clause if hasattr(clause, "attribute"): if clause.attribute != "": if clause.aggregation != "" and clause.aggregation is not None: attribute = ( clause._aggregation_name.upper() + "(" + clause.attribute + ")" ) elif clause.bin_size > 0: attribute = "BIN(" + clause.attribute + ")" else: attribute = clause.attribute if clause.channel == "x": channels.insert(0, [clause.channel, attribute]) elif clause.channel == "y": channels.insert(1, [clause.channel, attribute]) elif clause.channel != "": additional_channels.append([clause.channel, attribute]) channels.extend(additional_channels) str_channels = "" for channel in channels: str_channels += channel[0] + ": " + channel[1] + ", " if filter_intents: return f"<Vis ({str_channels[:-2]} -- [{filter_intents.attribute}{filter_intents.filter_op}{filter_intents.value}]) mark: {self._mark}, score: {self.score} >" else: return ( f"<Vis ({str_channels[:-2]}) mark: {self._mark}, score: {self.score} >" ) else: # When Vis not compiled (e.g., when self._source not populated), print original intent return f"<Vis ({str(self._intent)}) mark: {self._mark}, score: {self.score} >"
def __repr__(self): if self._source is None: return f"<Vis ({str(self._intent)}) mark: {self._mark}, score: {self.score} >" filter_intents = None channels, additional_channels = [], [] for clause in self._inferred_intent: if hasattr(clause, "value"): if clause.value != "": filter_intents = clause if hasattr(clause, "attribute"): if clause.attribute != "": if clause.aggregation != "" and clause.aggregation is not None: attribute = ( clause._aggregation_name.upper() + "(" + clause.attribute + ")" ) elif clause.bin_size > 0: attribute = "BIN(" + clause.attribute + ")" else: attribute = clause.attribute if clause.channel == "x": channels.insert(0, [clause.channel, attribute]) elif clause.channel == "y": channels.insert(1, [clause.channel, attribute]) elif clause.channel != "": additional_channels.append([clause.channel, attribute]) channels.extend(additional_channels) str_channels = "" for channel in channels: str_channels += channel[0] + ": " + channel[1] + ", " if filter_intents: return f"<Vis ({str_channels[:-2]} -- [{filter_intents.attribute}{filter_intents.filter_op}{filter_intents.value}]) mark: {self._mark}, score: {self.score} >" else: return f"<Vis ({str_channels[:-2]}) mark: {self._mark}, score: {self.score} >"
https://github.com/lux-org/lux/issues/189
C:\ProgramData\Anaconda3\lib\site-packages\IPython\core\formatters.py:345: UserWarning: Unexpected error in rendering Lux widget and recommendations. Falling back to Pandas display. Please report the following issue on Github: https://github.com/lux-org/lux/issues C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py:689: UserWarning:Traceback (most recent call last): File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py", line 2898, in get_loc return self._engine.get_loc(casted_key) File "pandas\_libs\index.pyx", line 70, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\index.pyx", line 101, in pandas._libs.index.IndexEngine.get_loc File "pandas\_libs\hashtable_class_helper.pxi", line 1032, in pandas._libs.hashtable.Int64HashTable.get_item File "pandas\_libs\hashtable_class_helper.pxi", line 1039, in pandas._libs.hashtable.Int64HashTable.get_item KeyError: 0 The above exception was the direct cause of the following exception: Traceback (most recent call last): File "C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py", line 641, in _repr_html_ self.maintain_recs() File "C:\ProgramData\Anaconda3\lib\site-packages\lux\core\frame.py", line 472, in maintain_recs custom_action_collection = custom_actions(rec_df) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\action\custom.py", line 75, in custom_actions recommendation = lux.actions.__getattr__(action_name).action(ldf) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\action\enhance.py", line 67, in enhance vis.score = interestingness(vis, ldf) File "C:\ProgramData\Anaconda3\lib\site-packages\lux\interestingness\interestingness.py", line 149, in interestingness chi2_score = chi2_contingency(contingency_table)[0] * 0.9 ** ( File "C:\ProgramData\Anaconda3\lib\site-packages\scipy\stats\contingency.py", line 241, in chi2_contingency observed = np.asarray(observed) File "C:\ProgramData\Anaconda3\lib\site-packages\numpy\core\_asarray.py", line 85, in asarray return array(a, dtype, copy=False, order=order) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\series.py", line 882, in __getitem__ return self._get_value(key) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\series.py", line 990, in _get_value loc = self.index.get_loc(label) File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py", line 2900, in get_loc raise KeyError(key) from err KeyError: 0
KeyError
def update_library(self, show=None): """Handles updating the Emby Media Server host via HTTP API Returns: Returns True for no issue or False if there was an error """ if settings.USE_EMBY: if not settings.EMBY_HOST: logger.debug("EMBY: No host specified, check your settings") return False params = {} if show: params.update( {"Updates": [{"Path": show.location, "UpdateType": "Created"}]} ) url = urljoin(settings.EMBY_HOST, "emby/Library/Media/Updated") else: url = urljoin(settings.EMBY_HOST, "emby/Library/Refresh") try: session = self.__make_session() response = session.post(url, json=params) response.raise_for_status() logger.debug( "EMBY: HTTP response: {0}".format(response.text.replace("\n", "")) ) return True except requests.exceptions.RequestException as error: logger.warning(f"EMBY: Warning: Could not contact Emby at {url} {error}") return False
def update_library(self, show=None): """Handles updating the Emby Media Server host via HTTP API Returns: Returns True for no issue or False if there was an error """ if settings.USE_EMBY: if not settings.EMBY_HOST: logger.debug("EMBY: No host specified, check your settings") return False params = {} if show: if show.indexer == 1: provider = "tvdb" elif show.indexer == 2: logger.warning("EMBY: TVRage Provider no longer valid") return False else: logger.warning("EMBY: Provider unknown") return False params.update({f"{provider}id": show.indexerid}) url = urljoin(settings.EMBY_HOST, "emby/Library/Series/Updated") try: session = self.__make_session() response = session.get(url, params=params) response.raise_for_status() logger.debug( "EMBY: HTTP response: {0}".format(response.text.replace("\n", "")) ) return True except requests.exceptions.RequestException as error: logger.warning(f"EMBY: Warning: Could not contact Emby at {url} {error}") return False
https://github.com/SickChill/SickChill/issues/6816
2020-09-29 11:18:39 DEBUG :: AUTO :: Failed doing webui request "sickchill/cache/images/268592_fanart_jpg": Traceback (most recent call last): 2020-09-29 11:18:37 WARNING :: WEBSERVER-HOME_0 :: EMBY: Warning: Could not contact Emby at https://emby.mydomain.fr/emby/Library/Series/Updated 404 Client Error: Not Found for url: https://emby.mydomain.fr/emby/Library/Series/Updated?tvdbid=268592 AA AttributeError: 'WebRoot' object has no attribute 'sickchill/cache/images/268592_fanart_jpg' AA method = getattr(self, route) AA File "/opt/usenet/SickChill/sickchill/views/index.py", line 159, in get
AttributeError
def run(self): """Search for a show with a given name on all the indexers, in a specific language""" results = [] lang_id = self.valid_languages[self.lang] if self.name and not self.indexerid: # only name was given search_results = sickchill.indexer.search_indexers_for_series_name( self.name, self.lang ) for indexer, indexer_results in search_results.items(): for result in indexer_results: # Skip it if it's in our show list already, and we only want new shows in_show_list = ( sickchill.show.Show.Show.find(settings.showList, int(result["id"])) is not None ) if in_show_list and self.only_new: continue results.append( { indexer_ids[indexer]: result["id"], "name": result["seriesName"], "first_aired": result["firstAired"], "indexer": indexer, "in_show_list": in_show_list, } ) return _responds(RESULT_SUCCESS, {"results": results, "langid": lang_id}) elif self.indexerid: indexer, result = sickchill.indexer.search_indexers_for_series_id( indexerid=self.indexerid, language=self.lang ) if not indexer: logger.warning("API :: Unable to find show with id " + str(self.indexerid)) return _responds(RESULT_SUCCESS, {"results": [], "langid": lang_id}) if not result.seriesName: logger.debug( "API :: Found show with indexerid: " + str(self.indexerid) + ", however it contained no show name" ) return _responds( RESULT_FAILURE, msg="Show contains no name, invalid result" ) results = [ { indexer_ids[indexer]: result.id, "name": str(result.seriesName), "first_aired": result.firstAired, "indexer": indexer, } ] return _responds(RESULT_SUCCESS, {"results": results, "langid": lang_id}) else: return _responds(RESULT_FAILURE, msg="Either a unique id or name is required!")
def run(self): """Search for a show with a given name on all the indexers, in a specific language""" results = [] lang_id = self.valid_languages[self.lang] if self.name and not self.indexerid: # only name was given search_results = sickchill.indexer.search_indexers_for_series_name( self.name, self.lang ) for indexer, indexer_results in search_results.items(): for result in indexer_results: # Skip it if it's in our show list already, and we only want new shows in_show_list = sickchill.show.Show.Show.find( settings.showList, int(result["id"]) ) if in_show_list and self.only_new: continue results.append( { indexer_ids[indexer]: result["id"], "name": result["seriesName"], "first_aired": result["firstAired"], "indexer": indexer, "in_show_list": in_show_list, } ) return _responds(RESULT_SUCCESS, {"results": results, "langid": lang_id}) elif self.indexerid: indexer, result = sickchill.indexer.search_indexers_for_series_id( indexerid=self.indexerid, language=self.lang ) if not indexer: logger.warning("API :: Unable to find show with id " + str(self.indexerid)) return _responds(RESULT_SUCCESS, {"results": [], "langid": lang_id}) if not result.seriesName: logger.debug( "API :: Found show with indexerid: " + str(self.indexerid) + ", however it contained no show name" ) return _responds( RESULT_FAILURE, msg="Show contains no name, invalid result" ) results = [ { indexer_ids[indexer]: result.id, "name": str(result.seriesName), "first_aired": result.firstAired, "indexer": indexer, } ] return _responds(RESULT_SUCCESS, {"results": results, "langid": lang_id}) else: return _responds(RESULT_FAILURE, msg="Either a unique id or name is required!")
https://github.com/SickChill/SickChill/issues/6791
2020-09-22 22:35:33 DEBUG :: WEBSERVER :: API :: 192.168.175.25 - gave correct API KEY. ACCESS GRANTED 2020-09-22 22:35:33 DEBUG :: WEBSERVER :: API :: all args: '()' 2020-09-22 22:35:33 DEBUG :: WEBSERVER :: API :: all kwargs: '{'cmd': 'sb.searchtvdb', 'lang': 'en', 'only_new': '0', 'name': 'game of thrones'}' 2020-09-22 22:35:33 DEBUG :: WEBSERVER :: API :: sb.searchtvdb: cur_kwargs {'lang': 'en', 'only_new': '0', 'name': 'game of thrones'} 2020-09-22 22:35:33 DEBUG :: WEBSERVER :: API :: Traceback (most recent call last): File "/opt/sickchill/sickchill/views/api/webapi.py", line 123, in _out_as_json out = json.dumps(_dict, ensure_ascii=False, sort_keys=True) File "/usr/lib/python3.6/json/__init__.py", line 238, in dumps **kw).encode(obj) File "/usr/lib/python3.6/json/encoder.py", line 199, in encode chunks = self.iterencode(o, _one_shot=True) File "/usr/lib/python3.6/json/encoder.py", line 257, in iterencode return _iterencode(o, 0) File "/usr/lib/python3.6/json/encoder.py", line 180, in default o.__class__.__name__) TypeError: Object of type 'TVShow' is not JSON serializable
TypeError
def _get_torrent_hash(result): """ Gets the torrent hash from either the magnet or torrent file content params: :result: an instance of the searchResult class """ if result.url.startswith("magnet"): result.hash = re.findall(r"urn:btih:([\w]{32,40})", result.url)[0] if len(result.hash) == 32: result.hash = b16encode(b32decode(result.hash)).lower() else: if not result.content: logger.exception("Torrent without content") raise Exception("Torrent without content") try: torrent_bdecode: Union[Iterable, Dict] = bencodepy.decode(result.content) except (bencodepy.BencodeDecodeError, Exception) as error: logger.exception("Unable to bdecode torrent") logger.info("Error is: {0}".format(error)) logger.info("Torrent bencoded data: {0!r}".format(result.content)) raise try: info = torrent_bdecode[b"info"] except Exception: logger.exception("Unable to find info field in torrent") logger.info("Torrent bencoded data: {0!r}".format(result.content)) raise try: result.hash = sha1(bencodepy.encode(info)).hexdigest() logger.debug("Result Hash is {0}".format(result.hash)) except (bencodepy.Ben, Exception) as error: logger.exception("Unable to bencode torrent info") logger.info("Error is: {0}".format(error)) logger.info("Torrent bencoded data: {0!r}".format(result.content)) raise return result
def _get_torrent_hash(result): """ Gets the torrent hash from either the magnet or torrent file content params: :result: an instance of the searchResult class """ if result.url.startswith("magnet"): result.hash = re.findall(r"urn:btih:([\w]{32,40})", result.url)[0] if len(result.hash) == 32: result.hash = b16encode(b32decode(result.hash)).lower() else: if not result.content: logger.exception("Torrent without content") raise Exception("Torrent without content") try: torrent_bdecode: Union[Iterable, Dict] = bencodepy.decode(result.content) except (bencodepy.DecodingError, Exception) as error: logger.exception("Unable to bdecode torrent") logger.info("Error is: {0}".format(error)) logger.info("Torrent bencoded data: {0!r}".format(result.content)) raise try: info = torrent_bdecode[b"info"] except Exception: logger.exception("Unable to find info field in torrent") logger.info("Torrent bencoded data: {0!r}".format(result.content)) raise try: result.hash = sha1(bencodepy.encode(info)).hexdigest() logger.debug("Result Hash is {0}".format(result.hash)) except (bencodepy.EncodingError, Exception) as error: logger.exception("Unable to bencode torrent info") logger.info("Error is: {0}".format(error)) logger.info("Torrent bencoded data: {0!r}".format(result.content)) raise return result
https://github.com/SickChill/SickChill/issues/6745
AA AttributeError: module 'bencodepy' has no attribute 'DecodingError' AA except bencodepy.DecodingError as e: AA File "/opt/sickchill/sickchill/providers/torrent/TorrentProvider.py", line 109, in _verify_download AA if self._verify_download(downloaded_filename): AA File "/opt/sickchill/sickchill/providers/GenericProvider.py", line 105, in download_result AA newResult = resProvider.download_result(result) AA File "/opt/sickchill/sickchill/oldbeard/search.py", line 34, in _downloadResult AA dlResult = _downloadResult(result) AA File "/opt/sickchill/sickchill/oldbeard/search.py", line 111, in snatchEpisode AA self.success = search.snatchEpisode(search_result[0]) AA File "/opt/sickchill/sickchill/oldbeard/search_queue.py", line 174, in run AA Traceback (most recent call last): AA During handling of the above exception, another exception occurred: AA AttributeError: module 'bencodepy' has no attribute 'decode_from_file' AA bencodepy.decode_from_file(file_name) AA File "/opt/sickchill/sickchill/providers/torrent/TorrentProvider.py", line 108, in _verify_download
AttributeError
def _parse_string(self, name, skip_scene_detection=False): if not name: return matches = [] best_result = None for cur_regex_num, cur_regex_name, cur_regex in self.compiled_regexes: match = cur_regex.match(name) if not match: continue result = ParseResult(name) result.which_regex = [cur_regex_name] result.score = 0 - cur_regex_num named_groups = list(match.groupdict()) if "series_name" in named_groups: result.series_name = match.group("series_name") if result.series_name: result.series_name = self.clean_series_name(result.series_name) result.score += 1 if "series_num" in named_groups and match.group("series_num"): result.score += 1 if "season_num" in named_groups: tmp_season = int(match.group("season_num")) if cur_regex_name == "bare" and tmp_season in (19, 20): continue if cur_regex_name == "fov" and tmp_season > 500: continue result.season_number = tmp_season result.score += 1 if "ep_num" in named_groups: ep_num = self._convert_number(match.group("ep_num")) if "extra_ep_num" in named_groups and match.group("extra_ep_num"): tmp_episodes = list( range(ep_num, self._convert_number(match.group("extra_ep_num")) + 1) ) if len(tmp_episodes) > 4: continue else: tmp_episodes = [ep_num] result.episode_numbers = tmp_episodes result.score += 3 if "ep_ab_num" in named_groups: ep_ab_num = self._convert_number(match.group("ep_ab_num")) if "extra_ab_ep_num" in named_groups and match.group("extra_ab_ep_num"): result.ab_episode_numbers = list( range( ep_ab_num, self._convert_number(match.group("extra_ab_ep_num")) + 1, ) ) result.score += 1 else: result.ab_episode_numbers = [ep_ab_num] result.score += 1 if "air_date" in named_groups: air_date = match.group("air_date") try: # Workaround for shows that get interpreted as 'air_date' incorrectly. # Shows so far are 11.22.63 and 9-1-1 excluded_shows = ["112263", "911"] assert re.sub(r"[^\d]*", "", air_date) not in excluded_shows # noinspection PyUnresolvedReferences check = dateutil.parser.parse(air_date, fuzzy_with_tokens=True)[ 0 ].date() # Make sure a 20th century date isn't returned as a 21st century date # 1 Year into the future (No releases should be coming out a year ahead of time, that's just insane) if check > check.today() and (check - check.today()).days // 365 > 1: check = check.replace(year=check.year - 100) result.air_date = check result.score += 1 except Exception as error: logger.debug(error) continue if "extra_info" in named_groups: tmp_extra_info = match.group("extra_info") # Show.S04.Special or Show.S05.Part.2.Extras is almost certainly not every episode in the season if ( tmp_extra_info and cur_regex_name == "season_only" and re.search( r"([. _-]|^)(special|extra)s?\w*([. _-]|$)", tmp_extra_info, re.I ) ): continue result.extra_info = tmp_extra_info result.score += 1 if "release_group" in named_groups: result.release_group = match.group("release_group") result.score += 1 if "version" in named_groups: # assigns version to anime file if detected using anime regex. Non-anime regex receives -1 version = match.group("version") if version: result.version = version else: result.version = 1 else: result.version = -1 matches.append(result) # only get matches with series_name # TODO: This makes tests fail when checking filenames that do not include the show name (refresh, force update, etc) # matches = [x for x in matches if x.series_name] if matches: # pick best match with highest score based on placement best_result = max( sorted(matches, reverse=True, key=attrgetter("which_regex")), key=attrgetter("score"), ) show = None if best_result and best_result.series_name and not self.naming_pattern: # try and create a show object for this result show = helpers.get_show(best_result.series_name, self.tryIndexers) # confirm passed in show object indexer id matches result show object indexer id if show: if self.showObj and show.indexerid != self.showObj.indexerid: show = None best_result.show = show elif self.showObj and not show: best_result.show = self.showObj # Only allow anime matches if resolved show or specified show is anime best_result = self.check_anime_preferred(best_result, matches) # if this is a naming pattern test or result doesn't have a show object then return best result if not best_result.show or self.naming_pattern: return best_result # get quality best_result.quality = common.Quality.nameQuality( name, best_result.show.is_anime ) new_episode_numbers = [] new_season_numbers = [] new_absolute_numbers = [] # if we have an air-by-date show then get the real season/episode numbers if best_result.is_air_by_date: airdate = best_result.air_date.toordinal() main_db_con = db.DBConnection() sql_result = main_db_con.select( "SELECT season, episode FROM tv_episodes WHERE showid = ? and indexer = ? and airdate = ?", [best_result.show.indexerid, best_result.show.indexer, airdate], ) season_number = None episode_numbers = [] if sql_result: season_number = int(sql_result[0][0]) episode_numbers = [int(sql_result[0][1])] if season_number is None or not episode_numbers: try: epObj = sickchill.indexer.episode( best_result.show, firstAired=best_result.air_date ) season_number = epObj["airedSeason"] episode_numbers = [epObj["airedEpisode"]] except Exception: logger.warning( f"Unable to find episode with date {best_result.air_date} for show {best_result.show.name}, skipping" ) episode_numbers = [] for epNo in episode_numbers: s = season_number e = epNo if best_result.show.is_scene: (s, e) = scene_numbering.get_indexer_numbering( best_result.show.indexerid, best_result.show.indexer, season_number, epNo, ) new_episode_numbers.append(e) new_season_numbers.append(s) elif best_result.show.is_anime and best_result.ab_episode_numbers: best_result.scene_season = scene_exceptions.get_scene_exception_by_name( best_result.series_name )[1] for epAbsNo in best_result.ab_episode_numbers: a = epAbsNo if best_result.show.is_scene and not skip_scene_detection: a = scene_numbering.get_indexer_absolute_numbering( best_result.show.indexerid, best_result.show.indexer, epAbsNo, True, best_result.scene_season, ) (s, e) = helpers.get_all_episodes_from_absolute_number( best_result.show, [a] ) new_absolute_numbers.append(a) new_episode_numbers.extend(e) new_season_numbers.append(s) elif best_result.season_number and best_result.episode_numbers: for epNo in best_result.episode_numbers: s = best_result.season_number e = epNo if best_result.show.is_scene and not skip_scene_detection: (s, e) = scene_numbering.get_indexer_numbering( best_result.show.indexerid, best_result.show.indexer, best_result.season_number, epNo, ) if best_result.show.is_anime: a = helpers.get_absolute_number_from_season_and_episode( best_result.show, s, e ) if a: new_absolute_numbers.append(a) new_episode_numbers.append(e) new_season_numbers.append(s) # need to do a quick sanity check heregex. It's possible that we now have episodes # from more than one season (by tvdb numbering), and this is just too much # for oldbeard, so we'd need to flag it. new_season_numbers = list(set(new_season_numbers)) # remove duplicates if len(new_season_numbers) > 1: raise InvalidNameException( f"Scene numbering results episodes from seasons {new_season_numbers}, " f"(i.e. more than one) and sickchill does not support this. Sorry." ) # I guess it's possible that we'd have duplicate episodes too, so lets # eliminate them new_episode_numbers = sorted(set(new_episode_numbers)) # maybe even duplicate absolute numbers so why not do them as well new_absolute_numbers = list(set(new_absolute_numbers)) new_absolute_numbers.sort() if new_absolute_numbers: best_result.ab_episode_numbers = new_absolute_numbers if new_season_numbers and new_episode_numbers: best_result.episode_numbers = new_episode_numbers best_result.season_number = new_season_numbers[0] if best_result.show.is_scene and not skip_scene_detection: logger.debug( f"Converted parsed result {best_result.original_name} into {best_result}" ) # CPU sleep time.sleep(0.02) return best_result
def _parse_string(self, name, skip_scene_detection=False): if not name: return matches = [] best_result = None for cur_regex_num, cur_regex_name, cur_regex in self.compiled_regexes: match = cur_regex.match(name) if not match: continue result = ParseResult(name) result.which_regex = [cur_regex_name] result.score = 0 - cur_regex_num named_groups = list(match.groupdict()) if "series_name" in named_groups: result.series_name = match.group("series_name") if result.series_name: result.series_name = self.clean_series_name(result.series_name) result.score += 1 if "series_num" in named_groups and match.group("series_num"): result.score += 1 if "season_num" in named_groups: tmp_season = int(match.group("season_num")) if cur_regex_name == "bare" and tmp_season in (19, 20): continue if cur_regex_name == "fov" and tmp_season > 500: continue result.season_number = tmp_season result.score += 1 if "ep_num" in named_groups: ep_num = self._convert_number(match.group("ep_num")) if "extra_ep_num" in named_groups and match.group("extra_ep_num"): tmp_episodes = list( range(ep_num, self._convert_number(match.group("extra_ep_num")) + 1) ) if len(tmp_episodes) > 4: continue else: tmp_episodes = [ep_num] result.episode_numbers = tmp_episodes result.score += 3 if "ep_ab_num" in named_groups: ep_ab_num = self._convert_number(match.group("ep_ab_num")) if "extra_ab_ep_num" in named_groups and match.group("extra_ab_ep_num"): result.ab_episode_numbers = list( range( ep_ab_num, self._convert_number(match.group("extra_ab_ep_num")) + 1, ) ) result.score += 1 else: result.ab_episode_numbers = [ep_ab_num] result.score += 1 if "air_date" in named_groups: air_date = match.group("air_date") try: # Workaround for shows that get interpreted as 'air_date' incorrectly. # Shows so far are 11.22.63 and 9-1-1 excluded_shows = ["112263", "911"] assert re.sub(r"[^\d]*", "", air_date) not in excluded_shows # noinspection PyUnresolvedReferences check = dateutil.parser.parse(air_date, fuzzy_with_tokens=True)[ 0 ].date() # Make sure a 20th century date isn't returned as a 21st century date # 1 Year into the future (No releases should be coming out a year ahead of time, that's just insane) if check > check.today() and (check - check.today()).days // 365 > 1: check = check.replace(year=check.year - 100) result.air_date = check result.score += 1 except Exception as error: logger.debug(error) continue if "extra_info" in named_groups: tmp_extra_info = match.group("extra_info") # Show.S04.Special or Show.S05.Part.2.Extras is almost certainly not every episode in the season if ( tmp_extra_info and cur_regex_name == "season_only" and re.search( r"([. _-]|^)(special|extra)s?\w*([. _-]|$)", tmp_extra_info, re.I ) ): continue result.extra_info = tmp_extra_info result.score += 1 if "release_group" in named_groups: result.release_group = match.group("release_group") result.score += 1 if "version" in named_groups: # assigns version to anime file if detected using anime regex. Non-anime regex receives -1 version = match.group("version") if version: result.version = version else: result.version = 1 else: result.version = -1 matches.append(result) # only get matches with series_name # TODO: This makes tests fail when checking filenames that do not include the show name (refresh, force update, etc) # matches = [x for x in matches if x.series_name] if matches: # pick best match with highest score based on placement best_result = max( sorted(matches, reverse=True, key=attrgetter("which_regex")), key=attrgetter("score"), ) show = None if best_result and best_result.series_name and not self.naming_pattern: # try and create a show object for this result show = helpers.get_show(best_result.series_name, self.tryIndexers) # confirm passed in show object indexer id matches result show object indexer id if show: if self.showObj and show.indexerid != self.showObj.indexerid: show = None # if show is an anime, try to use an anime expression first if show.is_anime: anime_matches = [x for x in matches if x.is_anime] if anime_matches: best_result_anime = max( sorted( anime_matches, reverse=True, key=attrgetter("which_regex") ), key=attrgetter("score"), ) if best_result_anime and best_result_anime.series_name: show_anime = helpers.get_show(best_result_anime.series_name) if show_anime and show_anime.indexerid == show.indexerid: best_result = best_result_anime best_result.show = show elif not show and self.showObj: best_result.show = self.showObj # if this is a naming pattern test or result doesn't have a show object then return best result if not best_result.show or self.naming_pattern: return best_result # get quality best_result.quality = common.Quality.nameQuality( name, best_result.show.is_anime ) new_episode_numbers = [] new_season_numbers = [] new_absolute_numbers = [] # if we have an air-by-date show then get the real season/episode numbers if best_result.is_air_by_date: airdate = best_result.air_date.toordinal() main_db_con = db.DBConnection() sql_result = main_db_con.select( "SELECT season, episode FROM tv_episodes WHERE showid = ? and indexer = ? and airdate = ?", [best_result.show.indexerid, best_result.show.indexer, airdate], ) season_number = None episode_numbers = [] if sql_result: season_number = int(sql_result[0][0]) episode_numbers = [int(sql_result[0][1])] if season_number is None or not episode_numbers: try: epObj = sickchill.indexer.episode( best_result.show, firstAired=best_result.air_date ) season_number = epObj["airedSeason"] episode_numbers = [epObj["airedEpisode"]] except Exception: logger.warning( f"Unable to find episode with date {best_result.air_date} for show {best_result.show.name}, skipping" ) episode_numbers = [] for epNo in episode_numbers: s = season_number e = epNo if best_result.show.is_scene: (s, e) = scene_numbering.get_indexer_numbering( best_result.show.indexerid, best_result.show.indexer, season_number, epNo, ) new_episode_numbers.append(e) new_season_numbers.append(s) elif best_result.show.is_anime and best_result.ab_episode_numbers: best_result.scene_season = scene_exceptions.get_scene_exception_by_name( best_result.series_name )[1] for epAbsNo in best_result.ab_episode_numbers: a = epAbsNo if best_result.show.is_scene and not skip_scene_detection: a = scene_numbering.get_indexer_absolute_numbering( best_result.show.indexerid, best_result.show.indexer, epAbsNo, True, best_result.scene_season, ) (s, e) = helpers.get_all_episodes_from_absolute_number( best_result.show, [a] ) new_absolute_numbers.append(a) new_episode_numbers.extend(e) new_season_numbers.append(s) elif best_result.season_number and best_result.episode_numbers: for epNo in best_result.episode_numbers: s = best_result.season_number e = epNo if best_result.show.is_scene and not skip_scene_detection: (s, e) = scene_numbering.get_indexer_numbering( best_result.show.indexerid, best_result.show.indexer, best_result.season_number, epNo, ) if best_result.show.is_anime: a = helpers.get_absolute_number_from_season_and_episode( best_result.show, s, e ) if a: new_absolute_numbers.append(a) new_episode_numbers.append(e) new_season_numbers.append(s) # need to do a quick sanity check heregex. It's possible that we now have episodes # from more than one season (by tvdb numbering), and this is just too much # for oldbeard, so we'd need to flag it. new_season_numbers = list(set(new_season_numbers)) # remove duplicates if len(new_season_numbers) > 1: raise InvalidNameException( f"Scene numbering results episodes from seasons {new_season_numbers}, " f"(i.e. more than one) and sickchill does not support this. Sorry." ) # I guess it's possible that we'd have duplicate episodes too, so lets # eliminate them new_episode_numbers = sorted(set(new_episode_numbers)) # maybe even duplicate absolute numbers so why not do them as well new_absolute_numbers = list(set(new_absolute_numbers)) new_absolute_numbers.sort() if new_absolute_numbers: best_result.ab_episode_numbers = new_absolute_numbers if new_season_numbers and new_episode_numbers: best_result.episode_numbers = new_episode_numbers best_result.season_number = new_season_numbers[0] if best_result.show.is_scene and not skip_scene_detection: logger.debug( f"Converted parsed result {best_result.original_name} into {best_result}" ) # CPU sleep time.sleep(0.02) return best_result
https://github.com/SickChill/SickChill/issues/6745
AA AttributeError: module 'bencodepy' has no attribute 'DecodingError' AA except bencodepy.DecodingError as e: AA File "/opt/sickchill/sickchill/providers/torrent/TorrentProvider.py", line 109, in _verify_download AA if self._verify_download(downloaded_filename): AA File "/opt/sickchill/sickchill/providers/GenericProvider.py", line 105, in download_result AA newResult = resProvider.download_result(result) AA File "/opt/sickchill/sickchill/oldbeard/search.py", line 34, in _downloadResult AA dlResult = _downloadResult(result) AA File "/opt/sickchill/sickchill/oldbeard/search.py", line 111, in snatchEpisode AA self.success = search.snatchEpisode(search_result[0]) AA File "/opt/sickchill/sickchill/oldbeard/search_queue.py", line 174, in run AA Traceback (most recent call last): AA During handling of the above exception, another exception occurred: AA AttributeError: module 'bencodepy' has no attribute 'decode_from_file' AA bencodepy.decode_from_file(file_name) AA File "/opt/sickchill/sickchill/providers/torrent/TorrentProvider.py", line 108, in _verify_download
AttributeError
def validateRSS(self): try: if self.cookies: success, status = self.add_cookies_from_ui() if not success: return False, status # Access to a protected member of a client class data = self.cache._get_rss_data()["entries"] if not data: return False, "No items found in the RSS feed {0}".format(self.url) title, url = self._get_title_and_url(data[0]) if not title: return False, "Unable to get title from first item" if not url: return False, "Unable to get torrent url from first item" if url.startswith("magnet:") and re.search(r"urn:btih:([\w]{32,40})", url): return True, "RSS feed Parsed correctly" else: torrent_file = self.get_url(url, returns="content") try: bencodepy.decode(torrent_file) except (bencodepy.exceptions.BencodeDecodeError, Exception) as error: self.dumpHTML(torrent_file) return False, "Torrent link is not a valid torrent file: {0}".format( error ) return True, "RSS feed Parsed correctly" except Exception as error: return False, "Error when trying to load RSS: {0}".format(str(error))
def validateRSS(self): try: if self.cookies: success, status = self.add_cookies_from_ui() if not success: return False, status # Access to a protected member of a client class data = self.cache._get_rss_data()["entries"] if not data: return False, "No items found in the RSS feed {0}".format(self.url) title, url = self._get_title_and_url(data[0]) if not title: return False, "Unable to get title from first item" if not url: return False, "Unable to get torrent url from first item" if url.startswith("magnet:") and re.search(r"urn:btih:([\w]{32,40})", url): return True, "RSS feed Parsed correctly" else: torrent_file = self.get_url(url, returns="content") try: bencodepy.decode(torrent_file) except (bencodepy.DecodingError, Exception) as error: self.dumpHTML(torrent_file) return False, "Torrent link is not a valid torrent file: {0}".format( error ) return True, "RSS feed Parsed correctly" except Exception as error: return False, "Error when trying to load RSS: {0}".format(str(error))
https://github.com/SickChill/SickChill/issues/6745
AA AttributeError: module 'bencodepy' has no attribute 'DecodingError' AA except bencodepy.DecodingError as e: AA File "/opt/sickchill/sickchill/providers/torrent/TorrentProvider.py", line 109, in _verify_download AA if self._verify_download(downloaded_filename): AA File "/opt/sickchill/sickchill/providers/GenericProvider.py", line 105, in download_result AA newResult = resProvider.download_result(result) AA File "/opt/sickchill/sickchill/oldbeard/search.py", line 34, in _downloadResult AA dlResult = _downloadResult(result) AA File "/opt/sickchill/sickchill/oldbeard/search.py", line 111, in snatchEpisode AA self.success = search.snatchEpisode(search_result[0]) AA File "/opt/sickchill/sickchill/oldbeard/search_queue.py", line 174, in run AA Traceback (most recent call last): AA During handling of the above exception, another exception occurred: AA AttributeError: module 'bencodepy' has no attribute 'decode_from_file' AA bencodepy.decode_from_file(file_name) AA File "/opt/sickchill/sickchill/providers/torrent/TorrentProvider.py", line 108, in _verify_download
AttributeError
def _verify_download(self, file_name): try: bencodepy.bread(file_name) except bencodepy.BencodeDecodeError as e: logger.debug("Failed to validate torrent file: {0}".format(str(e))) logger.debug("Result is not a valid torrent file") return False return True
def _verify_download(self, file_name): try: bencodepy.decode_from_file(file_name) except bencodepy.DecodingError as e: logger.debug("Failed to validate torrent file: {0}".format(str(e))) logger.debug("Result is not a valid torrent file") return False return True
https://github.com/SickChill/SickChill/issues/6745
AA AttributeError: module 'bencodepy' has no attribute 'DecodingError' AA except bencodepy.DecodingError as e: AA File "/opt/sickchill/sickchill/providers/torrent/TorrentProvider.py", line 109, in _verify_download AA if self._verify_download(downloaded_filename): AA File "/opt/sickchill/sickchill/providers/GenericProvider.py", line 105, in download_result AA newResult = resProvider.download_result(result) AA File "/opt/sickchill/sickchill/oldbeard/search.py", line 34, in _downloadResult AA dlResult = _downloadResult(result) AA File "/opt/sickchill/sickchill/oldbeard/search.py", line 111, in snatchEpisode AA self.success = search.snatchEpisode(search_result[0]) AA File "/opt/sickchill/sickchill/oldbeard/search_queue.py", line 174, in run AA Traceback (most recent call last): AA During handling of the above exception, another exception occurred: AA AttributeError: module 'bencodepy' has no attribute 'decode_from_file' AA bencodepy.decode_from_file(file_name) AA File "/opt/sickchill/sickchill/providers/torrent/TorrentProvider.py", line 108, in _verify_download
AttributeError
def search(self, name, language=None, exact=False, indexer_id=False): """ :param name: Show name to search for :param language: Language of the show info we want :param exact: Exact when adding existing, processed when adding new shows :param indexer_id: Exact indexer id to get, either imdb or tvdb id. :return: list of series objects """ language = language or self.language result = [] if isinstance(name, bytes): name = name.decode() if re.match(r"^t?t?\d{7,8}$", name) or re.match(r"^\d{6}$", name): try: if re.match(r"^t?t?\d{7,8}$", name): result = self._search(imdbId=f"tt{name.strip('t')}", language=language) elif re.match(r"^\d{6}$", name): series = self._series(name, language=language) if series: result = [series.info(language)] except HTTPError: logger.exception(traceback.format_exc()) else: # Name as provided (usually from nfo) names = [name] if not exact: # Name without year and separator test = re.match(r"^(.+?)[. -]+\(\d{4}\)?$", name) if test: names.append(test.group(1).strip()) # Name with spaces if re.match(r"[. -_]", name): names.append(re.sub(r"[. -_]", " ", name).strip()) if test: # Name with spaces and without year names.append(re.sub(r"[. -_]", " ", test.group(1)).strip()) for attempt in set(n for n in names if n.strip()): try: result = self._search(attempt, language=language) if result: break except HTTPError: logger.exception(traceback.format_exc()) return result
def search(self, name, language=None, exact=False, indexer_id=False): """ :param name: Show name to search for :param language: Language of the show info we want :param exact: Exact when adding existing, processed when adding new shows :param indexer_id: Exact indexer id to get, either imdb or tvdb id. :return: list of series objects """ language = language or self.language result = [] if re.match(r"^t?t?\d{7,8}$", str(name)) or re.match(r"^\d{6}$", name): try: if re.match(r"^t?t?\d{7,8}$", str(name)): result = self._search(imdbId=f"tt{name.strip('t')}", language=language) elif re.match(r"^\d{6}$", str(name)): series = self._series(name, language=language) if series: result = [series.info(language)] except HTTPError: logger.exception(traceback.format_exc()) else: # Name as provided (usually from nfo) names = [name] if not exact: # Name without year and separator test = re.match(r"^(.+?)[. -]+\(\d{4}\)?$", name) if test: names.append(test.group(1).strip()) # Name with spaces if re.match(r"[. -_]", name): names.append(re.sub(r"[. -_]", " ", name).strip()) if test: # Name with spaces and without year names.append(re.sub(r"[. -_]", " ", test.group(1)).strip()) for attempt in set(n for n in names if n.strip()): try: result = self._search(attempt, language=language) if result: break except HTTPError: logger.exception(traceback.format_exc()) return result
https://github.com/SickChill/SickChill/issues/6733
View Log: AA TypeError: argument of type 'NoneType' is not iterable AA if 'outputType' in out_dict: AA File "/opt/sickchill/sickchill/views/api/webapi.py", line 105, in get AA result = method(*self.path_args, **self.path_kwargs) AA File "/opt/sickchill/lib3/tornado/web.py", line 1701, in _execute AA Traceback (most recent call last): AA HTTPServerRequest(protocol='https', host='home.xxx', method='GET', uri='/tv/api/xxx/?cmd=sb.searchtvdb&amp;name=Game&amp;lang=en', version='HTTP/1.0', remote_ip='10.10.10.1') 2020-09-12 05:01:41 ERROR :: WEBSERVER :: Uncaught exception GET /tv/api/xxx/?cmd=sb.searchtvdb&amp;name=Game&amp;lang=en (10.10.10.1) View Error: 2020-09-12 05:01:41 Uncaught exception %s %r
TypeError
def __call__(self, target, *args, **kwargs): @wraps(target) def wrapper(*args, **kwargs): try: result = target(*args, **kwargs) except self.catch as e: if self.image_api and not kwargs.get("lang"): if args[1].lang != "en": logger.debug( "Could not find the image on the indexer, re-trying to find it in english" ) kwargs["lang"] = "en" return wrapper(*args, **kwargs) logger.debug( "Could not find item on the indexer: (Indexer probably doesn't have this item) [{error}]".format( error=str(e) ) ) logger.debug(traceback.format_exc()) result = self.default_return except RHTTPError as e: logger.debug( "Could not find item on the indexer: (Indexer probably doesn't have this item) [{error}]".format( error=str(e) ) ) logger.debug(traceback.format_exc()) result = self.default_return return result wrapper.__doc__ = target.__doc__ return wrapper
def __call__(self, target, *args, **kwargs): @wraps(target) def wrapper(*args, **kwargs): try: result = target(*args, **kwargs) except self.catch as e: if self.image_api and not kwargs.get("lang"): if args[1].lang != "en": logger.debug( "Could not find the image on the indexer, re-trying to find it in english" ) kwargs["lang"] = "en" return wrapper(*args, **kwargs) logger.debug( "Could not find item on the indexer: (Indexer probably doesn't have this item) [{error}]".format( error=str(e) ) ) result = self.default_return except RHTTPError as e: logger.debug( "Could not find item on the indexer: (Indexer probably doesn't have this item) [{error}]".format( error=str(e) ) ) result = self.default_return return result wrapper.__doc__ = target.__doc__ return wrapper
https://github.com/SickChill/SickChill/issues/6733
View Log: AA TypeError: argument of type 'NoneType' is not iterable AA if 'outputType' in out_dict: AA File "/opt/sickchill/sickchill/views/api/webapi.py", line 105, in get AA result = method(*self.path_args, **self.path_kwargs) AA File "/opt/sickchill/lib3/tornado/web.py", line 1701, in _execute AA Traceback (most recent call last): AA HTTPServerRequest(protocol='https', host='home.xxx', method='GET', uri='/tv/api/xxx/?cmd=sb.searchtvdb&amp;name=Game&amp;lang=en', version='HTTP/1.0', remote_ip='10.10.10.1') 2020-09-12 05:01:41 ERROR :: WEBSERVER :: Uncaught exception GET /tv/api/xxx/?cmd=sb.searchtvdb&amp;name=Game&amp;lang=en (10.10.10.1) View Error: 2020-09-12 05:01:41 Uncaught exception %s %r
TypeError
def wrapper(*args, **kwargs): try: result = target(*args, **kwargs) except self.catch as e: if self.image_api and not kwargs.get("lang"): if args[1].lang != "en": logger.debug( "Could not find the image on the indexer, re-trying to find it in english" ) kwargs["lang"] = "en" return wrapper(*args, **kwargs) logger.debug( "Could not find item on the indexer: (Indexer probably doesn't have this item) [{error}]".format( error=str(e) ) ) logger.debug(traceback.format_exc()) result = self.default_return except RHTTPError as e: logger.debug( "Could not find item on the indexer: (Indexer probably doesn't have this item) [{error}]".format( error=str(e) ) ) logger.debug(traceback.format_exc()) result = self.default_return return result
def wrapper(*args, **kwargs): try: result = target(*args, **kwargs) except self.catch as e: if self.image_api and not kwargs.get("lang"): if args[1].lang != "en": logger.debug( "Could not find the image on the indexer, re-trying to find it in english" ) kwargs["lang"] = "en" return wrapper(*args, **kwargs) logger.debug( "Could not find item on the indexer: (Indexer probably doesn't have this item) [{error}]".format( error=str(e) ) ) result = self.default_return except RHTTPError as e: logger.debug( "Could not find item on the indexer: (Indexer probably doesn't have this item) [{error}]".format( error=str(e) ) ) result = self.default_return return result
https://github.com/SickChill/SickChill/issues/6733
View Log: AA TypeError: argument of type 'NoneType' is not iterable AA if 'outputType' in out_dict: AA File "/opt/sickchill/sickchill/views/api/webapi.py", line 105, in get AA result = method(*self.path_args, **self.path_kwargs) AA File "/opt/sickchill/lib3/tornado/web.py", line 1701, in _execute AA Traceback (most recent call last): AA HTTPServerRequest(protocol='https', host='home.xxx', method='GET', uri='/tv/api/xxx/?cmd=sb.searchtvdb&amp;name=Game&amp;lang=en', version='HTTP/1.0', remote_ip='10.10.10.1') 2020-09-12 05:01:41 ERROR :: WEBSERVER :: Uncaught exception GET /tv/api/xxx/?cmd=sb.searchtvdb&amp;name=Game&amp;lang=en (10.10.10.1) View Error: 2020-09-12 05:01:41 Uncaught exception %s %r
TypeError
def run(self): """Search for a show with a given name on all the indexers, in a specific language""" results = [] lang_id = self.valid_languages[self.lang] if self.name and not self.indexerid: # only name was given search_results = sickchill.indexer.search_indexers_for_series_name( self.name, self.lang ) for indexer, indexer_results in search_results.items(): for result in indexer_results: # Skip it if it's in our show list already, and we only want new shows in_show_list = sickchill.show.Show.Show.find( settings.showList, int(result["id"]) ) if in_show_list and self.only_new: continue results.append( { indexer_ids[indexer]: result["id"], "name": result["seriesName"], "first_aired": result["firstAired"], "indexer": indexer, "in_show_list": in_show_list, } ) return _responds(RESULT_SUCCESS, {"results": results, "langid": lang_id}) elif self.indexerid: indexer, result = sickchill.indexer.search_indexers_for_series_id( indexerid=self.indexerid, language=self.lang ) if not indexer: logger.warning("API :: Unable to find show with id " + str(self.indexerid)) return _responds(RESULT_SUCCESS, {"results": [], "langid": lang_id}) if not result.seriesName: logger.debug( "API :: Found show with indexerid: " + str(self.indexerid) + ", however it contained no show name" ) return _responds( RESULT_FAILURE, msg="Show contains no name, invalid result" ) results = [ { indexer_ids[indexer]: result.id, "name": str(result.seriesName), "first_aired": result.firstAired, "indexer": indexer, } ] return _responds(RESULT_SUCCESS, {"results": results, "langid": lang_id}) else: return _responds(RESULT_FAILURE, msg="Either a unique id or name is required!")
def run(self): """Search for a show with a given name on all the indexers, in a specific language""" results = [] lang_id = self.valid_languages[self.lang] if self.name and not self.indexerid: # only name was given search_results = sickchill.indexer.search_indexers_for_series_name( str(self.name).encode(), self.lang ) for indexer, indexer_results in search_results.items(): for result in indexer_results: # Skip it if it's in our show list already, and we only want new shows in_show_list = sickchill.show.Show.Show.find( settings.showList, int(result["id"]) ) if in_show_list and self.only_new: continue results.append( { indexer_ids[indexer]: result["id"], "name": result["seriesName"], "first_aired": result["firstAired"], "indexer": indexer, "in_show_list": in_show_list, } ) return _responds(RESULT_SUCCESS, {"results": results, "langid": lang_id}) elif self.indexerid: indexer, result = sickchill.indexer.search_indexers_for_series_id( indexerid=self.indexerid, language=self.lang ) if not indexer: logger.warning("API :: Unable to find show with id " + str(self.indexerid)) return _responds(RESULT_SUCCESS, {"results": [], "langid": lang_id}) if not result.seriesName: logger.debug( "API :: Found show with indexerid: " + str(self.indexerid) + ", however it contained no show name" ) return _responds( RESULT_FAILURE, msg="Show contains no name, invalid result" ) results = [ { indexer_ids[indexer]: result.id, "name": str(result.seriesName), "first_aired": result.firstAired, "indexer": indexer, } ] return _responds(RESULT_SUCCESS, {"results": results, "langid": lang_id}) else: return _responds(RESULT_FAILURE, msg="Either a unique id or name is required!")
https://github.com/SickChill/SickChill/issues/6733
View Log: AA TypeError: argument of type 'NoneType' is not iterable AA if 'outputType' in out_dict: AA File "/opt/sickchill/sickchill/views/api/webapi.py", line 105, in get AA result = method(*self.path_args, **self.path_kwargs) AA File "/opt/sickchill/lib3/tornado/web.py", line 1701, in _execute AA Traceback (most recent call last): AA HTTPServerRequest(protocol='https', host='home.xxx', method='GET', uri='/tv/api/xxx/?cmd=sb.searchtvdb&amp;name=Game&amp;lang=en', version='HTTP/1.0', remote_ip='10.10.10.1') 2020-09-12 05:01:41 ERROR :: WEBSERVER :: Uncaught exception GET /tv/api/xxx/?cmd=sb.searchtvdb&amp;name=Game&amp;lang=en (10.10.10.1) View Error: 2020-09-12 05:01:41 Uncaught exception %s %r
TypeError
def __init__(self): """Gets a list of most popular TV series from imdb""" self.session = helpers.make_session() self.imdb = Imdb(session=self.session)
def __init__(self): """Gets a list of most popular TV series from imdb""" self.base_url = "https://imdb.com" self.url = urljoin(self.base_url, "search/title") self.params = { "at": 0, "sort": "moviemeter", "title_type": "tv_series", "year": "{0},{1}".format(date.today().year - 1, date.today().year + 1), } self.session = helpers.make_session()
https://github.com/SickChill/SickChill/issues/6719
AA UnboundLocalError: local variable 'e' referenced before assignment AA popular_shows=popular_shows, imdb_exception=e, AA File "C:\SickChill\SickChill\sickchill\views\manage\add_shows.py", line 309, in popularShows AA return function(**kwargs) AA File "C:\SickChill\SickChill\sickchill\views\index.py", line 183, in async_call AA result = self.fn(*self.args, **self.kwargs) AA File "C:\SickChill\Python3\lib\concurrent\futures\thread.py", line 57, in run AA value = future.result() AA File "C:\SickChill\SickChill\lib3\tornado\gen.py", line 735, in run AA results = yield self.async_call(method) AA File "C:\SickChill\SickChill\sickchill\views\index.py", line 160, in get AA yielded = self.gen.throw(*exc_info) # type: ignore AA File "C:\SickChill\SickChill\lib3\tornado\gen.py", line 742, in run AA result = await result AA File "C:\SickChill\SickChill\lib3\tornado\web.py", line 1703, in _execute AA Traceback (most recent call last): AA HTTPServerRequest(protocol='http', host='192.168.1.3:8081', method='GET', uri='/addShows/popularShows/', version='HTTP/1.1', remote_ip='192.168.1.2') 2020-09-10 15:56:01 ERROR :: WEBSERVER :: Uncaught exception GET /addShows/popularShows/ (192.168.1.2) 2020-09-10 15:56:01 WARNING :: WEBSERVER-ADDSHOWS_0 :: Could not get popular shows: list index out of range
UnboundLocalError
def fetch_popular_shows(self): """Get popular show information from IMDB""" return self.imdb.get_popular_shows()
def fetch_popular_shows(self): """Get popular show information from IMDB""" popular_shows = [] data = helpers.getURL( self.url, session=self.session, params=self.params, headers={"Referer": self.base_url}, returns="text", ) if not data: return None soup = BeautifulSoup(data, "html5lib") results = soup.find_all("div", {"class": "lister-item"}) for row in results: show = {} image_div = row.find("div", {"class": "lister-item-image"}) if image_div: image = image_div.find("img") show["image_url_large"] = self.change_size(image["loadlate"], 3) show["imdb_tt"] = image["data-tconst"] show["image_path"] = posixpath.join( "images", "imdb_popular", os.path.basename(show["image_url_large"]) ) self.cache_image(show["image_url_large"]) content = row.find("div", {"class": "lister-item-content"}) if content: header = row.find("h3", {"class": "lister-item-header"}) if header: a_tag = header.find("a") if a_tag: show["name"] = a_tag.get_text(strip=True) show["imdb_url"] = "http://www.imdb.com" + a_tag["href"] show["year"] = ( header.find("span", {"class": "lister-item-year"}) .contents[0] .split(" ")[0][1:] .strip("-") ) imdb_rating = row.find("div", {"class": "ratings-imdb-rating"}) show["rating"] = imdb_rating["data-value"] if imdb_rating else None votes = row.find("span", {"name": "nv"}) show["votes"] = votes["data-value"] if votes else None outline = content.find_all("p", {"class": "text-muted"}) if outline and len(outline) >= 2: show["outline"] = outline[1].contents[0].strip('"') else: show["outline"] = "" popular_shows.append(show) return popular_shows
https://github.com/SickChill/SickChill/issues/6719
AA UnboundLocalError: local variable 'e' referenced before assignment AA popular_shows=popular_shows, imdb_exception=e, AA File "C:\SickChill\SickChill\sickchill\views\manage\add_shows.py", line 309, in popularShows AA return function(**kwargs) AA File "C:\SickChill\SickChill\sickchill\views\index.py", line 183, in async_call AA result = self.fn(*self.args, **self.kwargs) AA File "C:\SickChill\Python3\lib\concurrent\futures\thread.py", line 57, in run AA value = future.result() AA File "C:\SickChill\SickChill\lib3\tornado\gen.py", line 735, in run AA results = yield self.async_call(method) AA File "C:\SickChill\SickChill\sickchill\views\index.py", line 160, in get AA yielded = self.gen.throw(*exc_info) # type: ignore AA File "C:\SickChill\SickChill\lib3\tornado\gen.py", line 742, in run AA result = await result AA File "C:\SickChill\SickChill\lib3\tornado\web.py", line 1703, in _execute AA Traceback (most recent call last): AA HTTPServerRequest(protocol='http', host='192.168.1.3:8081', method='GET', uri='/addShows/popularShows/', version='HTTP/1.1', remote_ip='192.168.1.2') 2020-09-10 15:56:01 ERROR :: WEBSERVER :: Uncaught exception GET /addShows/popularShows/ (192.168.1.2) 2020-09-10 15:56:01 WARNING :: WEBSERVER-ADDSHOWS_0 :: Could not get popular shows: list index out of range
UnboundLocalError
def popularShows(self): """ Fetches data from IMDB to show a list of popular shows. """ t = PageTemplate(rh=self, filename="addShows_popularShows.mako") try: popular_shows = imdb_popular.fetch_popular_shows() imdb_exception = None except Exception as error: logger.warning("Could not get popular shows: {0}".format(str(error))) logger.debug(traceback.format_exc()) popular_shows = None imdb_exception = error return t.render( title=_("Popular Shows"), header=_("Popular Shows"), popular_shows=popular_shows, imdb_exception=imdb_exception, topmenu="home", controller="addShows", action="popularShows", )
def popularShows(self): """ Fetches data from IMDB to show a list of popular shows. """ t = PageTemplate(rh=self, filename="addShows_popularShows.mako") e = None try: popular_shows = imdb_popular.fetch_popular_shows() except Exception as e: logger.warning("Could not get popular shows: {0}".format(str(e))) popular_shows = None return t.render( title=_("Popular Shows"), header=_("Popular Shows"), popular_shows=popular_shows, imdb_exception=e, topmenu="home", controller="addShows", action="popularShows", )
https://github.com/SickChill/SickChill/issues/6719
AA UnboundLocalError: local variable 'e' referenced before assignment AA popular_shows=popular_shows, imdb_exception=e, AA File "C:\SickChill\SickChill\sickchill\views\manage\add_shows.py", line 309, in popularShows AA return function(**kwargs) AA File "C:\SickChill\SickChill\sickchill\views\index.py", line 183, in async_call AA result = self.fn(*self.args, **self.kwargs) AA File "C:\SickChill\Python3\lib\concurrent\futures\thread.py", line 57, in run AA value = future.result() AA File "C:\SickChill\SickChill\lib3\tornado\gen.py", line 735, in run AA results = yield self.async_call(method) AA File "C:\SickChill\SickChill\sickchill\views\index.py", line 160, in get AA yielded = self.gen.throw(*exc_info) # type: ignore AA File "C:\SickChill\SickChill\lib3\tornado\gen.py", line 742, in run AA result = await result AA File "C:\SickChill\SickChill\lib3\tornado\web.py", line 1703, in _execute AA Traceback (most recent call last): AA HTTPServerRequest(protocol='http', host='192.168.1.3:8081', method='GET', uri='/addShows/popularShows/', version='HTTP/1.1', remote_ip='192.168.1.2') 2020-09-10 15:56:01 ERROR :: WEBSERVER :: Uncaught exception GET /addShows/popularShows/ (192.168.1.2) 2020-09-10 15:56:01 WARNING :: WEBSERVER-ADDSHOWS_0 :: Could not get popular shows: list index out of range
UnboundLocalError
def search(self, search_strings, age=0, ep_obj=None): results = [] if not self.login(): return results search_params = { "app_id": "sickchill", "min_seeders": try_int(self.minseed), "min_leechers": try_int(self.minleech), "limit": 100, "format": "json_extended", "ranked": try_int(self.ranked), "token": self.token, } if ep_obj is not None: ep_indexerid = ep_obj.show.indexerid ep_indexer = ep_obj.idxr.slug else: ep_indexerid = None ep_indexer = None for mode in search_strings: items = [] logger.debug(_(f"Search Mode: {mode}")) if mode == "RSS": search_params["sort"] = "last" search_params["mode"] = "list" search_params.pop("search_string", None) search_params.pop("search_tvdb", None) if settings.movie_list and settings.movie_list.query.count(): search_params["category[]"] = ["17", "18"] else: search_params["category"] = ["tv"] else: search_params["category"] = ("tv", "movies")[mode == "Movie"] search_params["sort"] = self.sorting if self.sorting else "seeders" search_params["mode"] = "search" if ep_indexer == "tvdb" and ep_indexerid: search_params["search_tvdb"] = ep_indexerid else: search_params.pop("search_tvdb", None) for search_string in search_strings[mode]: if mode != "RSS": search_string = re.sub(r"\((\d{4})\)", r"\1", search_string).replace( " ", "." ) search_params["search_string"] = search_string logger.debug(_(f"Search String: {search_string}")) time.sleep(cpu_presets[settings.CPU_PRESET]) data = self.get_url(self.urls["api"], params=search_params, returns="json") if not isinstance(data, dict): logger.debug("No data returned from provider") continue error = data.get("error") error_code = data.get("error_code") # Don't log when {"error":"No results found","error_code":20} # List of errors: https://github.com/rarbg/torrentapi/issues/1#issuecomment-114763312 if error: if try_int(error_code) != 20: logger.info(error) continue torrent_results = data.get("torrent_results") if not torrent_results: logger.debug( "Data returned from provider does not contain any torrents" ) continue for item in torrent_results: try: title = item.pop("title") download_url = item.pop("download") if not all([title, download_url]): continue seeders = item.pop("seeders") leechers = item.pop("leechers") if seeders < self.minseed or leechers < self.minleech: if mode != "RSS": logger.debug( "Discarding torrent because it doesn't meet the" " minimum seeders or leechers: {0} (S:{1} L:{2})".format( title, seeders, leechers ) ) continue torrent_size = item.pop("size", -1) size = convert_size(torrent_size) or -1 torrent_hash = self.hash_from_magnet(download_url) if mode != "RSS": logger.debug( "Found result: {0} with {1} seeders and {2} leechers".format( title, seeders, leechers ) ) result = { "title": title, "link": download_url, "size": size, "seeders": seeders, "leechers": leechers, "hash": torrent_hash, } items.append(result) except Exception as e: logger.info(e) continue # For each search mode sort all the items by seeders items.sort(key=lambda d: try_int(d.get("seeders", 0)), reverse=True) results += items return results
def search(self, search_strings, age=0, ep_obj=None): results = [] if not self.login(): return results search_params = { "app_id": "sickchill", "min_seeders": try_int(self.minseed), "min_leechers": try_int(self.minleech), "limit": 100, "format": "json_extended", "ranked": try_int(self.ranked), "token": self.token, } if ep_obj is not None: ep_indexerid = ep_obj.show.indexerid ep_indexer = ep_obj.idxr.slug else: ep_indexerid = None ep_indexer = None for mode in search_strings: items = [] logger.debug(_(f"Search Mode: {mode}")) if mode == "RSS": search_params["sort"] = "last" search_params["mode"] = "list" search_params.pop("search_string", None) search_params.pop("search_tvdb", None) if settings.movie_list.query.count(): search_params["category[]"] = ["17", "18"] else: search_params["category"] = ["tv"] else: search_params["category"] = ("tv", "movies")[mode == "Movie"] search_params["sort"] = self.sorting if self.sorting else "seeders" search_params["mode"] = "search" if ep_indexer == "tvdb" and ep_indexerid: search_params["search_tvdb"] = ep_indexerid else: search_params.pop("search_tvdb", None) for search_string in search_strings[mode]: if mode != "RSS": search_string = re.sub(r"\((\d{4})\)", r"\1", search_string).replace( " ", "." ) search_params["search_string"] = search_string logger.debug(_(f"Search String: {search_string}")) time.sleep(cpu_presets[settings.CPU_PRESET]) data = self.get_url(self.urls["api"], params=search_params, returns="json") if not isinstance(data, dict): logger.debug("No data returned from provider") continue error = data.get("error") error_code = data.get("error_code") # Don't log when {"error":"No results found","error_code":20} # List of errors: https://github.com/rarbg/torrentapi/issues/1#issuecomment-114763312 if error: if try_int(error_code) != 20: logger.info(error) continue torrent_results = data.get("torrent_results") if not torrent_results: logger.debug( "Data returned from provider does not contain any torrents" ) continue for item in torrent_results: try: title = item.pop("title") download_url = item.pop("download") if not all([title, download_url]): continue seeders = item.pop("seeders") leechers = item.pop("leechers") if seeders < self.minseed or leechers < self.minleech: if mode != "RSS": logger.debug( "Discarding torrent because it doesn't meet the" " minimum seeders or leechers: {0} (S:{1} L:{2})".format( title, seeders, leechers ) ) continue torrent_size = item.pop("size", -1) size = convert_size(torrent_size) or -1 torrent_hash = self.hash_from_magnet(download_url) if mode != "RSS": logger.debug( "Found result: {0} with {1} seeders and {2} leechers".format( title, seeders, leechers ) ) result = { "title": title, "link": download_url, "size": size, "seeders": seeders, "leechers": leechers, "hash": torrent_hash, } items.append(result) except Exception as e: logger.info(e) continue # For each search mode sort all the items by seeders items.sort(key=lambda d: try_int(d.get("seeders", 0)), reverse=True) results += items return results
https://github.com/SickChill/SickChill/issues/6715
2020-09-09 20:34:50 DEBUG :: SEARCHQUEUE-DAILY-SEARCH :: [Rarbg] :: Search Mode: RSS 2020-09-09 20:34:50 DEBUG :: SEARCHQUEUE-DAILY-SEARCH :: [Rarbg] :: Error while searching Rarbg, skipping: AttributeError("'NoneType' object has no attribute 'query'") 2020-09-09 20:34:50 DEBUG :: SEARCHQUEUE-DAILY-SEARCH :: [Rarbg] :: Traceback (most recent call last): File "C:\SickChill\SickChill\sickchill\oldbeard\tvcache.py", line 66, in update_cache data = self._get_rss_data() File "C:\SickChill\SickChill\sickchill\oldbeard\tvcache.py", line 55, in _get_rss_data return {'entries': self.provider.search(self.search_params)} if self.search_params else None File "C:\SickChill\SickChill\sickchill\oldbeard\providers\rarbg.py", line 84, in search if settings.movie_list.query.count(): AttributeError: 'NoneType' object has no attribute 'query'
AttributeError
def setup_gettext(language=None): languages = [language] if language else None if not [ key for key in ("LANGUAGE", "LC_ALL", "LC_MESSAGES", "LANG") if os.environ.get(key) ]: os.environ["LC_MESSAGES"] = "en_US.UTF-8" print(locale_dir()) gt = gettext.translation( "messages", locale_dir(), languages=languages, fallback=True ) gt.install(names=["ngettext"])
def setup_gettext(language=None): languages = [language] if language else None if not [ key for key in ("LANGUAGE", "LC_ALL", "LC_MESSAGES", "LANG") if key in os.environ ]: os.environ["LC_MESSAGES"] = "en_US.UTF-8" gt = gettext.translation("messages", locale_dir(), languages=languages) gt.install(names=["ngettext"])
https://github.com/SickChill/SickChill/issues/6702
Big-Mac:SickChill tony$ python3 SickChill.py Traceback (most recent call last): File "SickChill.py", line 14, in <module> import sickchill.start File "/Applications/SickChill/sickchill/__init__.py", line 1, in <module> from .show.indexers import indexer, ShowIndexer File "/Applications/SickChill/sickchill/show/indexers/__init__.py", line 1, in <module> from .handler import ShowIndexer File "/Applications/SickChill/sickchill/show/indexers/handler.py", line 3, in <module> from sickchill import logger, settings File "/Applications/SickChill/sickchill/logger.py", line 19, in <module> from sickchill import settings File "/Applications/SickChill/sickchill/settings.py", line 11, in <module> from sickchill.oldbeard.common import SD File "/Applications/SickChill/sickchill/oldbeard/common.py", line 16, in <module> setup_gettext() File "/Applications/SickChill/sickchill/init_helpers.py", line 27, in setup_gettext gt = gettext.translation('messages', locale_dir(), languages=languages) File "/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/python3.8/gettext.py", line 588, in translation raise FileNotFoundError(ENOENT, FileNotFoundError: [Errno 2] No translation file found for domain: 'messages'
FileNotFoundError
def _parse(self, data, mode): """ Parse search results for items. :param data: The raw response from a search :param mode: The current mode used to search, e.g. RSS :return: A KV with a list of items found and if there's an next page to search """ def process_column_header(td): ret = "" if td.a and td.a.img: ret = td.a.img.get("title", td.a.get_text(strip=True)) if not ret: ret = td.get_text(strip=True) return ret items = [] has_next_page = False with BS4Parser(data, "html5lib") as html: torrent_table = html.find("table", id="torrent_table") torrent_rows = torrent_table("tr") if torrent_table else [] # ignore next page in RSS mode has_next_page = ( mode != "RSS" and html.find("a", class_="pager_next") is not None ) logger.log("More Pages? {0}".format(has_next_page), logger.DEBUG) # Continue only if at least one Release is found if len(torrent_rows) < 2: logger.log( "Data returned from provider does not contain any torrents", logger.DEBUG, ) return {"has_next_page": has_next_page, "items": []} # '', '', 'Name /Year', 'Files', 'Time', 'Size', 'Snatches', 'Seeders', 'Leechers' labels = [process_column_header(label) for label in torrent_rows[0]("td")] group_title = "" # Skip column headers for result in torrent_rows[1:]: cells = result("td") result_class = result.get("class") # When "Grouping Torrents" is enabled, the structure of table change group_index = -2 if "group_torrent" in result_class else 0 try: title = result.select('a[href^="torrents.php?id="]')[0].get_text() title = re.sub( "\s+", " ", title ).strip() # clean empty lines and multiple spaces if "group" in result_class or "torrent" in result_class: # get international title if available title = re.sub(".* \[(.*?)\](.*)", r"\1\2", title) if "group" in result_class: group_title = title continue # Clean dash between title and season/episode title = re.sub("- (S\d{2}(E\d{2,4})?)", r"\1", title) for serie in self.absolute_numbering: if serie in title: # remove season from title when its in absolute format title = re.sub("S\d{2}E(\d{2,4})", r"\1", title) break download_url = urljoin( self.url, result.select('a[href^="torrents.php?action=download"]')[0]["href"], ) if not all([title, download_url]): continue # seeders = try_int(cells[labels.index('Seeders') + group_index].get_text(strip=True)) # leechers = try_int(cells[labels.index('Leechers') + group_index].get_text(strip=True)) seeders = try_int(cells[4].get_text(strip=True)) leechers = try_int(cells[5].get_text(strip=True)) # Filter unseeded torrent if seeders < self.minseed or leechers < self.minleech: if mode != "RSS": logger.log( "Discarding torrent because it doesn't meet the" " minimum seeders or leechers: {0} (S:{1} L:{2})".format( title, seeders, leechers ), logger.DEBUG, ) continue torrent_details = None if "group_torrent" in result_class: # torrents belonging to a group torrent_details = title title = group_title elif "torrent" in result_class: # standalone/un grouped torrents torrent_details = ( cells[labels.index("Nome/Ano")] .find("div", class_="torrent_info") .get_text() ) torrent_details = ( torrent_details.replace("[", " ") .replace("]", " ") .replace("/", " ") ) torrent_details = torrent_details.replace("Full HD ", "1080p").replace( "HD ", "720p" ) # torrent_size = cells[labels.index('Tamanho') + group_index].get_text(strip=True) torrent_size = cells[2].get_text(strip=True) size = convert_size(torrent_size) or -1 torrent_name = "{0} {1}".format(title, torrent_details.strip()).strip() torrent_name = re.sub("\s+", " ", torrent_name) items.append( { "title": torrent_name, "link": download_url, "size": size, "seeders": seeders, "leechers": leechers, "hash": "", } ) if mode != "RSS": logger.log( "Found result: {0} with {1} seeders and {2} leechers".format( torrent_name, seeders, leechers ), logger.DEBUG, ) except (AttributeError, TypeError, KeyError, ValueError, IndexError): logger.log("Failed parsing provider.", logger.ERROR) return {"has_next_page": has_next_page, "items": items}
def _parse(self, data, mode): """ Parse search results for items. :param data: The raw response from a search :param mode: The current mode used to search, e.g. RSS :return: A KV with a list of items found and if there's an next page to search """ def process_column_header(td): ret = "" if td.a and td.a.img: ret = td.a.img.get("title", td.a.get_text(strip=True)) if not ret: ret = td.get_text(strip=True) return ret items = [] has_next_page = False with BS4Parser(data, "html5lib") as html: torrent_table = html.find("table", id="torrent_table") torrent_rows = torrent_table("tr") if torrent_table else [] # ignore next page in RSS mode has_next_page = ( mode != "RSS" and html.find("a", class_="pager_next") is not None ) logger.log("More Pages? {0}".format(has_next_page), logger.DEBUG) # Continue only if at least one Release is found if len(torrent_rows) < 2: logger.log( "Data returned from provider does not contain any torrents", logger.DEBUG, ) return {"has_next_page": has_next_page, "items": []} # '', '', 'Name /Year', 'Files', 'Time', 'Size', 'Snatches', 'Seeders', 'Leechers' labels = [process_column_header(label) for label in torrent_rows[0]("td")] group_title = "" # Skip column headers for result in torrent_rows[1:]: cells = result("td") result_class = result.get("class") # When "Grouping Torrents" is enabled, the structure of table change group_index = -2 if "group_torrent" in result_class else 0 try: title = result.select('a[href^="torrents.php?id="]')[0].get_text() title = re.sub( "\s+", " ", title ).strip() # clean empty lines and multiple spaces if "group" in result_class or "torrent" in result_class: # get international title if available title = re.sub(".* \[(.*?)\](.*)", r"\1\2", title) if "group" in result_class: group_title = title continue # Clean dash between title and season/episode title = re.sub("- (S\d{2}(E\d{2,4})?)", r"\1", title) for serie in self.absolute_numbering: if serie in title: # remove season from title when its in absolute format title = re.sub("S\d{2}E(\d{2,4})", r"\1", title) break download_url = urljoin( self.url, result.select('a[href^="torrents.php?action=download"]')[0]["href"], ) if not all([title, download_url]): continue seeders = try_int( cells[labels.index("Seeders") + group_index].get_text(strip=True) ) leechers = try_int( cells[labels.index("Leechers") + group_index].get_text(strip=True) ) # Filter unseeded torrent if seeders < self.minseed or leechers < self.minleech: if mode != "RSS": logger.log( "Discarding torrent because it doesn't meet the" " minimum seeders or leechers: {0} (S:{1} L:{2})".format( title, seeders, leechers ), logger.DEBUG, ) continue torrent_details = None if "group_torrent" in result_class: # torrents belonging to a group torrent_details = title title = group_title elif "torrent" in result_class: # standalone/un grouped torrents torrent_details = ( cells[labels.index("Nome/Ano")] .find("div", class_="torrent_info") .get_text() ) torrent_details = ( torrent_details.replace("[", " ") .replace("]", " ") .replace("/", " ") ) torrent_details = torrent_details.replace("Full HD ", "1080p").replace( "HD ", "720p" ) torrent_size = cells[labels.index("Tamanho") + group_index].get_text( strip=True ) size = convert_size(torrent_size) or -1 torrent_name = "{0} {1}".format(title, torrent_details.strip()).strip() torrent_name = re.sub("\s+", " ", torrent_name) items.append( { "title": torrent_name, "link": download_url, "size": size, "seeders": seeders, "leechers": leechers, "hash": "", } ) if mode != "RSS": logger.log( "Found result: {0} with {1} seeders and {2} leechers".format( torrent_name, seeders, leechers ), logger.DEBUG, ) except (AttributeError, TypeError, KeyError, ValueError, IndexError): logger.log("Failed parsing provider.", logger.ERROR) return {"has_next_page": has_next_page, "items": items}
https://github.com/SickChill/SickChill/issues/5591
2019-07-19 01:16:45 ERROR SEARCHQUEUE-MANUAL-18347 :: [BJ-Share] :: [0418408] Failed parsing provider. Traceback (most recent call last): File "/opt/sickchill/sickbeard/providers/bjshare.py", line 204, in parse seeders = try_int(cells[labels.index('Seeders') + group_index].get_text(strip=True)) ValueError: 'Seeders' is not in list
ValueError
def __init__(self): TorrentProvider.__init__(self, "Rarbg") self.public = True self.minseed = None self.ranked = None self.sorting = None self.minleech = None self.token = None self.token_expires = None # Spec: https://torrentapi.org/apidocs_v2.txt self.url = "https://rarbg.to" self.urls = {"api": "http://torrentapi.org/pubapi_v2.php"} self.proper_strings = ["{{PROPER|REPACK}}"] self.cache = tvcache.TVCache( self, min_time=10 ) # only poll RARBG every 10 minutes max
def __init__(self): TorrentProvider.__init__(self, "Rarbg") self.public = True self.minseed = None self.ranked = None self.sorting = None self.minleech = None self.token = None self.token_expires = None # Spec: https://torrentapi.org/apidocs_v2.txt self.url = "https://rarbg.com" self.urls = {"api": "http://torrentapi.org/pubapi_v2.php"} self.proper_strings = ["{{PROPER|REPACK}}"] self.cache = tvcache.TVCache( self, min_time=10 ) # only poll RARBG every 10 minutes max
https://github.com/SickChill/SickChill/issues/5859
2020-01-12 09:11:36 ERROR SHOWQUEUE-ADD :: [b6fe632] Unable to look up the show in None on theTVDB using ID 360733, not using the NFO. Delete .nfo and try adding manually again.: 'Series' object has no attribute 'title' 2020-01-12 09:11:36 INFO SHOWQUEUE-ADD :: Starting to add show by Indexer Id: 360733 2020-01-12 09:11:35 DEBUG SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Search string: Chicago Fire S05E11 2020-01-12 09:11:35 DEBUG SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Search Mode: Episode 2020-01-12 09:11:34 INFO SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Request failed: 429 Client Error: Too Many Requests for url: https://nzb.cat/api?apikey=**********&tvdbid=258541&season=5&maxage=999&cat=5030%2C5040&limit=100&t=tvsearch&offset=0&ep=10 (<type 'str'>) AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:34 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last): AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:33 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last): AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:33 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last):
AttributeError
def run(self): super(QueueItemAdd, self).run() if self.showDir: try: assert isinstance(self.showDir, six.text_type) except AssertionError: logger.log(traceback.format_exc(), logger.WARNING) self._finish_early() return logger.log( "Starting to add show {0}".format( "by ShowDir: {0}".format(self.showDir) if self.showDir else "by Indexer Id: {0}".format(self.indexer_id) ) ) # make sure the Indexer IDs are valid try: s = sickchill.indexer.series_by_id( indexerid=self.indexer_id, indexer=self.indexer, language=self.lang ) # Let's try to create the show Dir if it's not provided. This way we force the show dir to build build using the # Indexers provided series name if self.root_dir and not self.showDir: if not s.seriesName: logger.log( "Unable to get a show {0}, can't add the show".format(self.showDir) ) self._finish_early() return self.showDir = ek( os.path.join, self.root_dir, sanitize_filename(s.seriesName) ) dir_exists = makeDir(self.showDir) if not dir_exists: logger.log( "Unable to create the folder {0}, can't add the show".format( self.showDir ) ) self._finish_early() return chmodAsParent(self.showDir) # this usually only happens if they have an NFO in their show dir which gave us a Indexer ID that has no proper english version of the show if getattr(s, "seriesName", None) is None: # noinspection PyPep8 error_string = "Show in {0} has no name on {1}, probably searched with the wrong language. Delete .nfo and add manually in the correct language.".format( self.showDir, sickchill.indexer.name(self.indexer) ) logger.log(error_string, logger.WARNING) ui.notifications.error("Unable to add show", error_string) self._finish_early() return # if the show has no episodes/seasons if not s: error_string = ( "Show {0} is on {1} but contains no season/episode data.".format( s.seriesName, sickchill.indexer.name(self.indexer) ) ) logger.log(error_string) ui.notifications.error("Unable to add show", error_string) self._finish_early() return except Exception as error: error_string = "Unable to look up the show in {0} on {1} using ID {2}, not using the NFO. Delete .nfo and try adding manually again.".format( self.showDir, sickchill.indexer.name(self.indexer), self.indexer_id ) logger.log("{0}: {1}".format(error_string, error), logger.ERROR) ui.notifications.error("Unable to add show", error_string) if sickbeard.USE_TRAKT: trakt_api = TraktAPI(sickbeard.SSL_VERIFY, sickbeard.TRAKT_TIMEOUT) title = self.showDir.split("/")[-1] data = { "shows": [ { "title": title, "ids": {sickchill.indexer.slug(self.indexer): self.indexer_id}, } ] } trakt_api.traktRequest("sync/watchlist/remove", data, method="POST") self._finish_early() return try: try: newShow = TVShow(self.indexer, self.indexer_id, self.lang) except MultipleShowObjectsException as error: # If we have the show in our list, but the location is wrong, lets fix it and refresh! existing_show = Show.find(sickbeard.showList, self.indexer_id) # noinspection PyProtectedMember if existing_show and not ek(os.path.isdir, existing_show._location): newShow = existing_show else: raise error newShow.loadFromIndexer() self.show = newShow # set up initial values self.show.location = self.showDir self.show.subtitles = ( self.subtitles if self.subtitles is not None else sickbeard.SUBTITLES_DEFAULT ) self.show.subtitles_sr_metadata = self.subtitles_sr_metadata self.show.quality = self.quality if self.quality else sickbeard.QUALITY_DEFAULT self.show.season_folders = ( self.season_folders if self.season_folders is not None else sickbeard.SEASON_FOLDERS_DEFAULT ) self.show.anime = ( self.anime if self.anime is not None else sickbeard.ANIME_DEFAULT ) self.show.scene = ( self.scene if self.scene is not None else sickbeard.SCENE_DEFAULT ) self.show.paused = self.paused if self.paused is not None else False # set up default new/missing episode status logger.log( "Setting all episodes to the specified default status: {0}".format( self.show.default_ep_status ) ) self.show.default_ep_status = self.default_status if self.show.anime: self.show.release_groups = BlackAndWhiteList(self.show.indexerid) if self.blacklist: self.show.release_groups.set_black_keywords(self.blacklist) if self.whitelist: self.show.release_groups.set_white_keywords(self.whitelist) # # be smart-ish about this # if self.show.genre and 'talk show' in self.show.genre.lower(): # self.show.air_by_date = 1 # if self.show.genre and 'documentary' in self.show.genre.lower(): # self.show.air_by_date = 0 # if self.show.classification and 'sports' in self.show.classification.lower(): # self.show.sports = 1 except Exception as error: error_string = "Unable to add {0} due to an error with {1}".format( self.show.name if self.show else "show", sickchill.indexer.name(self.indexer), ) logger.log("{0}: {1}".format(error_string, error), logger.ERROR) logger.log("Error trying to add show: {0}".format(error), logger.ERROR) logger.log(traceback.format_exc(), logger.DEBUG) ui.notifications.error("Unable to add show", error_string) self._finish_early() return except MultipleShowObjectsException: error_string = "The show in {0} is already in your show list, skipping".format( self.showDir ) logger.log(error_string, logger.WARNING) ui.notifications.error("Show skipped", error_string) self._finish_early() return logger.log("Retrieving show info from IMDb", logger.DEBUG) try: self.show.loadIMDbInfo() except imdb_exceptions.IMDbError as error: logger.log(" Something wrong on IMDb api: {0}".format(error), logger.WARNING) except Exception as error: logger.log("Error loading IMDb info: {0}".format(error), logger.ERROR) try: self.show.saveToDB() except Exception as error: logger.log( "Error saving the show to the database: {0}".format(error), logger.ERROR ) logger.log(traceback.format_exc(), logger.DEBUG) self._finish_early() raise # add it to the show list if not Show.find(sickbeard.showList, self.indexer_id): sickbeard.showList.append(self.show) try: self.show.loadEpisodesFromIndexer() except Exception as error: logger.log( "Error with {0}, not creating episode list: {1}".format( self.show.idxr.name, error ), logger.ERROR, ) logger.log(traceback.format_exc(), logger.DEBUG) # update internal name cache name_cache.buildNameCache(self.show) try: self.show.loadEpisodesFromDir() except Exception as error: logger.log("Error searching dir for episodes: {0}".format(error), logger.ERROR) logger.log(traceback.format_exc(), logger.DEBUG) # if they set default ep status to WANTED then run the backlog to search for episodes # FIXME: This needs to be a backlog queue item!!! if self.show.default_ep_status == WANTED: logger.log("Launching backlog for this show since its episodes are WANTED") sickbeard.backlogSearchScheduler.action.searchBacklog([self.show]) self.show.writeMetadata() self.show.updateMetadata() self.show.populateCache() self.show.flushEpisodes() if sickbeard.USE_TRAKT: # if there are specific episodes that need to be added by trakt sickbeard.traktCheckerScheduler.action.manageNewShow(self.show) # add show to trakt.tv library if sickbeard.TRAKT_SYNC: sickbeard.traktCheckerScheduler.action.addShowToTraktLibrary(self.show) if sickbeard.TRAKT_SYNC_WATCHLIST: logger.log("update watchlist") notifiers.trakt_notifier.update_watchlist(show_obj=self.show) # Load XEM data to DB for show scene_numbering.xem_refresh(self.show.indexerid, self.show.indexer, force=True) # check if show has XEM mapping so we can determine if searches should go by scene numbering or indexer numbering. if not self.scene and scene_numbering.get_xem_numbering_for_show( self.show.indexerid, self.show.indexer ): self.show.scene = 1 # After initial add, set to default_status_after. self.show.default_ep_status = self.default_status_after super(QueueItemAdd, self).finish() self.finish()
def run(self): super(QueueItemAdd, self).run() if self.showDir: try: assert isinstance(self.showDir, six.text_type) except AssertionError: logger.log(traceback.format_exc(), logger.WARNING) self._finish_early() return logger.log( "Starting to add show {0}".format( "by ShowDir: {0}".format(self.showDir) if self.showDir else "by Indexer Id: {0}".format(self.indexer_id) ) ) # make sure the Indexer IDs are valid try: s = sickchill.indexer.series_by_id( indexerid=self.indexer_id, indexer=self.indexer, language=self.lang ) # Let's try to create the show Dir if it's not provided. This way we force the show dir to build build using the # Indexers provided series name if self.root_dir and not self.showDir: if not s.title: logger.log( "Unable to get a show {0}, can't add the show".format(self.showDir) ) self._finish_early() return self.showDir = ek(os.path.join, self.root_dir, sanitize_filename(s.title)) dir_exists = makeDir(self.showDir) if not dir_exists: logger.log( "Unable to create the folder {0}, can't add the show".format( self.showDir ) ) self._finish_early() return chmodAsParent(self.showDir) # this usually only happens if they have an NFO in their show dir which gave us a Indexer ID that has no proper english version of the show if getattr(s, "seriesName", None) is None: # noinspection PyPep8 error_string = "Show in {0} has no name on {1}, probably searched with the wrong language. Delete .nfo and add manually in the correct language.".format( self.showDir, sickchill.indexer.name(self.indexer) ) logger.log(error_string, logger.WARNING) ui.notifications.error("Unable to add show", error_string) self._finish_early() return # if the show has no episodes/seasons if not s: error_string = ( "Show {0} is on {1} but contains no season/episode data.".format( s.seriesName, sickchill.indexer.name(self.indexer) ) ) logger.log(error_string) ui.notifications.error("Unable to add show", error_string) self._finish_early() return except Exception as error: error_string = "Unable to look up the show in {0} on {1} using ID {2}, not using the NFO. Delete .nfo and try adding manually again.".format( self.showDir, sickchill.indexer.name(self.indexer), self.indexer_id ) logger.log("{0}: {1}".format(error_string, error), logger.ERROR) ui.notifications.error("Unable to add show", error_string) if sickbeard.USE_TRAKT: trakt_api = TraktAPI(sickbeard.SSL_VERIFY, sickbeard.TRAKT_TIMEOUT) title = self.showDir.split("/")[-1] data = { "shows": [ { "title": title, "ids": {sickchill.indexer.slug(self.indexer): self.indexer_id}, } ] } trakt_api.traktRequest("sync/watchlist/remove", data, method="POST") self._finish_early() return try: try: newShow = TVShow(self.indexer, self.indexer_id, self.lang) except MultipleShowObjectsException as error: # If we have the show in our list, but the location is wrong, lets fix it and refresh! existing_show = Show.find(sickbeard.showList, self.indexer_id) # noinspection PyProtectedMember if existing_show and not ek(os.path.isdir, existing_show._location): newShow = existing_show else: raise error newShow.loadFromIndexer() self.show = newShow # set up initial values self.show.location = self.showDir self.show.subtitles = ( self.subtitles if self.subtitles is not None else sickbeard.SUBTITLES_DEFAULT ) self.show.subtitles_sr_metadata = self.subtitles_sr_metadata self.show.quality = self.quality if self.quality else sickbeard.QUALITY_DEFAULT self.show.season_folders = ( self.season_folders if self.season_folders is not None else sickbeard.SEASON_FOLDERS_DEFAULT ) self.show.anime = ( self.anime if self.anime is not None else sickbeard.ANIME_DEFAULT ) self.show.scene = ( self.scene if self.scene is not None else sickbeard.SCENE_DEFAULT ) self.show.paused = self.paused if self.paused is not None else False # set up default new/missing episode status logger.log( "Setting all episodes to the specified default status: {0}".format( self.show.default_ep_status ) ) self.show.default_ep_status = self.default_status if self.show.anime: self.show.release_groups = BlackAndWhiteList(self.show.indexerid) if self.blacklist: self.show.release_groups.set_black_keywords(self.blacklist) if self.whitelist: self.show.release_groups.set_white_keywords(self.whitelist) # # be smart-ish about this # if self.show.genre and 'talk show' in self.show.genre.lower(): # self.show.air_by_date = 1 # if self.show.genre and 'documentary' in self.show.genre.lower(): # self.show.air_by_date = 0 # if self.show.classification and 'sports' in self.show.classification.lower(): # self.show.sports = 1 except Exception as error: error_string = "Unable to add {0} due to an error with {1}".format( self.show.name if self.show else "show", sickchill.indexer.name(self.indexer), ) logger.log("{0}: {1}".format(error_string, error), logger.ERROR) logger.log("Error trying to add show: {0}".format(error), logger.ERROR) logger.log(traceback.format_exc(), logger.DEBUG) ui.notifications.error("Unable to add show", error_string) self._finish_early() return except MultipleShowObjectsException: error_string = "The show in {0} is already in your show list, skipping".format( self.showDir ) logger.log(error_string, logger.WARNING) ui.notifications.error("Show skipped", error_string) self._finish_early() return logger.log("Retrieving show info from IMDb", logger.DEBUG) try: self.show.loadIMDbInfo() except imdb_exceptions.IMDbError as error: logger.log(" Something wrong on IMDb api: {0}".format(error), logger.WARNING) except Exception as error: logger.log("Error loading IMDb info: {0}".format(error), logger.ERROR) try: self.show.saveToDB() except Exception as error: logger.log( "Error saving the show to the database: {0}".format(error), logger.ERROR ) logger.log(traceback.format_exc(), logger.DEBUG) self._finish_early() raise # add it to the show list if not Show.find(sickbeard.showList, self.indexer_id): sickbeard.showList.append(self.show) try: self.show.loadEpisodesFromIndexer() except Exception as error: logger.log( "Error with {0}, not creating episode list: {1}".format( self.show.idxr.name, error ), logger.ERROR, ) logger.log(traceback.format_exc(), logger.DEBUG) # update internal name cache name_cache.buildNameCache(self.show) try: self.show.loadEpisodesFromDir() except Exception as error: logger.log("Error searching dir for episodes: {0}".format(error), logger.ERROR) logger.log(traceback.format_exc(), logger.DEBUG) # if they set default ep status to WANTED then run the backlog to search for episodes # FIXME: This needs to be a backlog queue item!!! if self.show.default_ep_status == WANTED: logger.log("Launching backlog for this show since its episodes are WANTED") sickbeard.backlogSearchScheduler.action.searchBacklog([self.show]) self.show.writeMetadata() self.show.updateMetadata() self.show.populateCache() self.show.flushEpisodes() if sickbeard.USE_TRAKT: # if there are specific episodes that need to be added by trakt sickbeard.traktCheckerScheduler.action.manageNewShow(self.show) # add show to trakt.tv library if sickbeard.TRAKT_SYNC: sickbeard.traktCheckerScheduler.action.addShowToTraktLibrary(self.show) if sickbeard.TRAKT_SYNC_WATCHLIST: logger.log("update watchlist") notifiers.trakt_notifier.update_watchlist(show_obj=self.show) # Load XEM data to DB for show scene_numbering.xem_refresh(self.show.indexerid, self.show.indexer, force=True) # check if show has XEM mapping so we can determine if searches should go by scene numbering or indexer numbering. if not self.scene and scene_numbering.get_xem_numbering_for_show( self.show.indexerid, self.show.indexer ): self.show.scene = 1 # After initial add, set to default_status_after. self.show.default_ep_status = self.default_status_after super(QueueItemAdd, self).finish() self.finish()
https://github.com/SickChill/SickChill/issues/5859
2020-01-12 09:11:36 ERROR SHOWQUEUE-ADD :: [b6fe632] Unable to look up the show in None on theTVDB using ID 360733, not using the NFO. Delete .nfo and try adding manually again.: 'Series' object has no attribute 'title' 2020-01-12 09:11:36 INFO SHOWQUEUE-ADD :: Starting to add show by Indexer Id: 360733 2020-01-12 09:11:35 DEBUG SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Search string: Chicago Fire S05E11 2020-01-12 09:11:35 DEBUG SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Search Mode: Episode 2020-01-12 09:11:34 INFO SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Request failed: 429 Client Error: Too Many Requests for url: https://nzb.cat/api?apikey=**********&tvdbid=258541&season=5&maxage=999&cat=5030%2C5040&limit=100&t=tvsearch&offset=0&ep=10 (<type 'str'>) AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:34 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last): AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:33 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last): AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:33 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last):
AttributeError
def getTrendingShowImage(indexerId): image_url = sickchill.indexer.series_poster_url_by_id(indexerId) if image_url: image_path = trakt_trending.get_image_path( trakt_trending.get_image_name(indexerId) ) trakt_trending.cache_image(image_url, image_path) return indexerId
def getTrendingShowImage(indexerId): image_url = sickchill.indexer.series_poster_by_id(indexerId) if image_url: image_path = trakt_trending.get_image_path( trakt_trending.get_image_name(indexerId) ) trakt_trending.cache_image(image_url, image_path) return indexerId
https://github.com/SickChill/SickChill/issues/5859
2020-01-12 09:11:36 ERROR SHOWQUEUE-ADD :: [b6fe632] Unable to look up the show in None on theTVDB using ID 360733, not using the NFO. Delete .nfo and try adding manually again.: 'Series' object has no attribute 'title' 2020-01-12 09:11:36 INFO SHOWQUEUE-ADD :: Starting to add show by Indexer Id: 360733 2020-01-12 09:11:35 DEBUG SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Search string: Chicago Fire S05E11 2020-01-12 09:11:35 DEBUG SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Search Mode: Episode 2020-01-12 09:11:34 INFO SEARCHQUEUE-BACKLOG-258541 :: [NZB.Cat] :: Request failed: 429 Client Error: Too Many Requests for url: https://nzb.cat/api?apikey=**********&tvdbid=258541&season=5&maxage=999&cat=5030%2C5040&limit=100&t=tvsearch&offset=0&ep=10 (<type 'str'>) AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:34 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last): AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:33 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last): AttributeError: 'ShowIndexer' object has no attribute 'series_poster_by_id' image_url = sickchill.indexer.series_poster_by_id(indexerId) File "C:\SickRage\SickRage\sickchill\views\manage\add_shows.py", line 345, in getTrendingShowImage result = function(**kwargs) File "C:\SickRage\SickRage\sickchill\views\index.py", line 182, in async_call result = self.fn(*self.args, **self.kwargs) File "C:\SickRage\SickRage\lib\concurrent\futures\thread.py", line 63, in run return self.__get_result() File "C:\SickRage\SickRage\lib\concurrent\futures\_base.py", line 455, in result value = future.result() File "C:\SickRage\SickRage\lib\tornado\gen.py", line 1055, in run results = yield self.async_call(method) File "C:\SickRage\SickRage\sickchill\views\index.py", line 160, in get 2020-01-12 09:11:33 DEBUG TORNADO :: Failed doing webui request "getTrendingShowImage": Traceback (most recent call last):
AttributeError
def create_https_certificates(ssl_cert, ssl_key): """ Create self-signed HTTPS certificares and store in paths 'ssl_cert' and 'ssl_key' :param ssl_cert: Path of SSL certificate file to write :param ssl_key: Path of SSL keyfile to write :return: True on success, False on failure """ # assert isinstance(ssl_key, unicode) # assert isinstance(ssl_cert, unicode) try: # noinspection PyUnresolvedReferences from OpenSSL import crypto from certgen import ( createKeyPair, createCertRequest, createCertificate, TYPE_RSA, ) except Exception: logger.log( "pyopenssl module missing, please install for https access", logger.WARNING ) return False import time serial = int(time.time()) validity_period = (0, 60 * 60 * 24 * 365 * 10) # ten years # Create the CA Certificate cakey = createKeyPair(TYPE_RSA, 4096) careq = createCertRequest(cakey, CN="Certificate Authority") cacert = createCertificate(careq, (careq, cakey), serial, validity_period, "sha256") cname = "SickRage" pkey = createKeyPair(TYPE_RSA, 4096) req = createCertRequest(pkey, CN=cname) cert = createCertificate(req, (cacert, cakey), serial, validity_period, "sha256") # Save the key and certificate to disk try: # pylint: disable=no-member # Module has no member io.open(ssl_key, "wb").write(crypto.dump_privatekey(crypto.FILETYPE_PEM, pkey)) io.open(ssl_cert, "wb").write( crypto.dump_certificate(crypto.FILETYPE_PEM, cert) ) except Exception: logger.log("Error creating SSL key and certificate", logger.ERROR) return False return True
def create_https_certificates(ssl_cert, ssl_key): """ Create self-signed HTTPS certificares and store in paths 'ssl_cert' and 'ssl_key' :param ssl_cert: Path of SSL certificate file to write :param ssl_key: Path of SSL keyfile to write :return: True on success, False on failure """ # assert isinstance(ssl_key, unicode) # assert isinstance(ssl_cert, unicode) try: from OpenSSL import crypto # noinspection PyUnresolvedReferences from certgen import ( createKeyPair, createCertRequest, createCertificate, TYPE_RSA, serial, ) # @UnresolvedImport except Exception: logger.log( "pyopenssl module missing, please install for https access", logger.WARNING ) return False # Create the CA Certificate cakey = createKeyPair(TYPE_RSA, 4096) careq = createCertRequest(cakey, CN="Certificate Authority") cacert = createCertificate( careq, (careq, cakey), serial, (0, 60 * 60 * 24 * 365 * 10) ) # ten years cname = "SickRage" pkey = createKeyPair(TYPE_RSA, 4096) req = createCertRequest(pkey, CN=cname) cert = createCertificate( req, (cacert, cakey), serial, (0, 60 * 60 * 24 * 365 * 10) ) # ten years # Save the key and certificate to disk try: # pylint: disable=no-member # Module has no member io.open(ssl_key, "wb").write(crypto.dump_privatekey(crypto.FILETYPE_PEM, pkey)) io.open(ssl_cert, "wb").write( crypto.dump_certificate(crypto.FILETYPE_PEM, cert) ) except Exception: logger.log("Error creating SSL key and certificate", logger.ERROR) return False return True
https://github.com/SickChill/SickChill/issues/3770
Traceback (most recent call last): File "/opt/sickrage/lib/tornado/ioloop.py", line 888, in start handler_func(fd_obj, events) File "/opt/sickrage/lib/tornado/stack_context.py", line 277, in null_wrapper return fn(*args, **kwargs) File "/opt/sickrage/lib/tornado/netutil.py", line 276, in accept_handler callback(connection, address) File "/opt/sickrage/lib/tornado/tcpserver.py", line 264, in _handle_connection do_handshake_on_connect=False) File "/opt/sickrage/lib/tornado/netutil.py", line 517, in ssl_wrap_socket context = ssl_options_to_context(ssl_options) File "/opt/sickrage/lib/tornado/netutil.py", line 494, in ssl_options_to_context context.load_cert_chain(ssl_options['certfile'], ssl_options.get('keyfile', None)) SSLError: [SSL: CA_MD_TOO_WEAK] ca md too weak (_ssl.c:2699)
SSLError
def initialize(consoleLogging=True): # pylint: disable=too-many-locals, too-many-branches, too-many-statements with INIT_LOCK: # pylint: disable=global-statement global \ BRANCH, \ GIT_RESET, \ GIT_REMOTE, \ GIT_REMOTE_URL, \ CUR_COMMIT_HASH, \ CUR_COMMIT_BRANCH, \ ACTUAL_LOG_DIR, \ LOG_DIR, \ LOG_NR, \ LOG_SIZE, \ WEB_PORT, \ WEB_LOG, \ ENCRYPTION_VERSION, \ ENCRYPTION_SECRET, \ WEB_ROOT, \ WEB_USERNAME, \ WEB_PASSWORD, \ WEB_HOST, \ WEB_IPV6, \ WEB_COOKIE_SECRET, \ WEB_USE_GZIP, \ API_KEY, \ ENABLE_HTTPS, \ HTTPS_CERT, \ HTTPS_KEY, \ HANDLE_REVERSE_PROXY, \ USE_NZBS, \ USE_TORRENTS, \ NZB_METHOD, \ NZB_DIR, \ DOWNLOAD_PROPERS, \ RANDOMIZE_PROVIDERS, \ CHECK_PROPERS_INTERVAL, \ ALLOW_HIGH_PRIORITY, \ SAB_FORCED, \ TORRENT_METHOD, \ NOTIFY_ON_LOGIN, \ SAB_USERNAME, \ SAB_PASSWORD, \ SAB_APIKEY, \ SAB_CATEGORY, \ SAB_CATEGORY_BACKLOG, \ SAB_CATEGORY_ANIME, \ SAB_CATEGORY_ANIME_BACKLOG, \ SAB_HOST, \ NZBGET_USERNAME, \ NZBGET_PASSWORD, \ NZBGET_CATEGORY, \ NZBGET_CATEGORY_BACKLOG, \ NZBGET_CATEGORY_ANIME, \ NZBGET_CATEGORY_ANIME_BACKLOG, \ NZBGET_PRIORITY, \ NZBGET_HOST, \ NZBGET_USE_HTTPS, \ backlogSearchScheduler, \ TORRENT_USERNAME, \ TORRENT_PASSWORD, \ TORRENT_HOST, \ TORRENT_PATH, \ TORRENT_SEED_TIME, \ TORRENT_PAUSED, \ TORRENT_HIGH_BANDWIDTH, \ TORRENT_LABEL, \ TORRENT_LABEL_ANIME, \ TORRENT_VERIFY_CERT, \ TORRENT_RPCURL, \ TORRENT_AUTH_TYPE, \ USE_KODI, \ KODI_ALWAYS_ON, \ KODI_NOTIFY_ONSNATCH, \ KODI_NOTIFY_ONDOWNLOAD, \ KODI_NOTIFY_ONSUBTITLEDOWNLOAD, \ KODI_UPDATE_FULL, \ KODI_UPDATE_ONLYFIRST, \ KODI_UPDATE_LIBRARY, \ KODI_HOST, \ KODI_USERNAME, \ KODI_PASSWORD, \ BACKLOG_FREQUENCY, \ USE_TRAKT, \ TRAKT_USERNAME, \ TRAKT_ACCESS_TOKEN, \ TRAKT_REFRESH_TOKEN, \ TRAKT_REMOVE_WATCHLIST, \ TRAKT_SYNC_WATCHLIST, \ TRAKT_REMOVE_SHOW_FROM_SICKRAGE, \ TRAKT_METHOD_ADD, \ TRAKT_START_PAUSED, \ traktCheckerScheduler, \ TRAKT_USE_RECOMMENDED, \ TRAKT_SYNC, \ TRAKT_SYNC_REMOVE, \ TRAKT_DEFAULT_INDEXER, \ TRAKT_REMOVE_SERIESLIST, \ TRAKT_TIMEOUT, \ TRAKT_BLACKLIST_NAME, \ USE_PLEX_SERVER, \ PLEX_NOTIFY_ONSNATCH, \ PLEX_NOTIFY_ONDOWNLOAD, \ PLEX_NOTIFY_ONSUBTITLEDOWNLOAD, \ PLEX_UPDATE_LIBRARY, \ USE_PLEX_CLIENT, \ PLEX_CLIENT_USERNAME, \ PLEX_CLIENT_PASSWORD, \ PLEX_SERVER_HOST, \ PLEX_SERVER_TOKEN, \ PLEX_CLIENT_HOST, \ PLEX_SERVER_USERNAME, \ PLEX_SERVER_PASSWORD, \ PLEX_SERVER_HTTPS, \ MIN_BACKLOG_FREQUENCY, \ SKIP_REMOVED_FILES, \ ALLOWED_EXTENSIONS, \ USE_EMBY, \ EMBY_HOST, \ EMBY_APIKEY, \ SITE_MESSAGES, \ showUpdateScheduler, \ INDEXER_DEFAULT_LANGUAGE, \ EP_DEFAULT_DELETED_STATUS, \ LAUNCH_BROWSER, \ TRASH_REMOVE_SHOW, \ TRASH_ROTATE_LOGS, \ SORT_ARTICLE, \ NEWZNAB_DATA, \ NZBS, \ NZBS_UID, \ NZBS_HASH, \ INDEXER_DEFAULT, \ INDEXER_TIMEOUT, \ USENET_RETENTION, \ TORRENT_DIR, \ QUALITY_DEFAULT, \ SEASON_FOLDERS_DEFAULT, \ SUBTITLES_DEFAULT, \ STATUS_DEFAULT, \ STATUS_DEFAULT_AFTER, \ GROWL_NOTIFY_ONSNATCH, \ GROWL_NOTIFY_ONDOWNLOAD, \ GROWL_NOTIFY_ONSUBTITLEDOWNLOAD, \ TWITTER_NOTIFY_ONSNATCH, \ TWITTER_NOTIFY_ONDOWNLOAD, \ TWITTER_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_FREEMOBILE, \ FREEMOBILE_ID, \ FREEMOBILE_APIKEY, \ FREEMOBILE_NOTIFY_ONSNATCH, \ FREEMOBILE_NOTIFY_ONDOWNLOAD, \ FREEMOBILE_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_TELEGRAM, \ TELEGRAM_ID, \ TELEGRAM_APIKEY, \ TELEGRAM_NOTIFY_ONSNATCH, \ TELEGRAM_NOTIFY_ONDOWNLOAD, \ TELEGRAM_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_JOIN, \ JOIN_ID, \ JOIN_NOTIFY_ONSNATCH, \ JOIN_NOTIFY_ONDOWNLOAD, \ JOIN_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_GROWL, \ GROWL_HOST, \ GROWL_PASSWORD, \ USE_PROWL, \ PROWL_NOTIFY_ONSNATCH, \ PROWL_NOTIFY_ONDOWNLOAD, \ PROWL_NOTIFY_ONSUBTITLEDOWNLOAD, \ PROWL_API, \ PROWL_PRIORITY, \ PROWL_MESSAGE_TITLE, \ USE_PYTIVO, \ PYTIVO_NOTIFY_ONSNATCH, \ PYTIVO_NOTIFY_ONDOWNLOAD, \ PYTIVO_NOTIFY_ONSUBTITLEDOWNLOAD, \ PYTIVO_UPDATE_LIBRARY, \ PYTIVO_HOST, \ PYTIVO_SHARE_NAME, \ PYTIVO_TIVO_NAME, \ USE_NMA, \ NMA_NOTIFY_ONSNATCH, \ NMA_NOTIFY_ONDOWNLOAD, \ NMA_NOTIFY_ONSUBTITLEDOWNLOAD, \ NMA_API, \ NMA_PRIORITY, \ USE_PUSHALOT, \ PUSHALOT_NOTIFY_ONSNATCH, \ PUSHALOT_NOTIFY_ONDOWNLOAD, \ PUSHALOT_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHALOT_AUTHORIZATIONTOKEN, \ USE_PUSHBULLET, \ PUSHBULLET_NOTIFY_ONSNATCH, \ PUSHBULLET_NOTIFY_ONDOWNLOAD, \ PUSHBULLET_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHBULLET_API, \ PUSHBULLET_DEVICE, \ PUSHBULLET_CHANNEL, \ versionCheckScheduler, \ VERSION_NOTIFY, \ AUTO_UPDATE, \ NOTIFY_ON_UPDATE, \ PROCESS_AUTOMATICALLY, \ NO_DELETE, \ USE_ICACLS, \ UNPACK, \ CPU_PRESET, \ UNPACK_DIR, \ UNRAR_TOOL, \ ALT_UNRAR_TOOL, \ KEEP_PROCESSED_DIR, \ PROCESS_METHOD, \ PROCESSOR_FOLLOW_SYMLINKS, \ DELRARCONTENTS, \ TV_DOWNLOAD_DIR, \ UPDATE_FREQUENCY, \ showQueueScheduler, \ searchQueueScheduler, \ postProcessorTaskScheduler, \ ROOT_DIRS, \ CACHE_DIR, \ ACTUAL_CACHE_DIR, \ TIMEZONE_DISPLAY, \ NAMING_PATTERN, \ NAMING_MULTI_EP, \ NAMING_ANIME_MULTI_EP, \ NAMING_FORCE_FOLDERS, \ NAMING_ABD_PATTERN, \ NAMING_CUSTOM_ABD, \ NAMING_SPORTS_PATTERN, \ NAMING_CUSTOM_SPORTS, \ NAMING_ANIME_PATTERN, \ NAMING_CUSTOM_ANIME, \ NAMING_STRIP_YEAR, \ RENAME_EPISODES, \ AIRDATE_EPISODES, \ FILE_TIMESTAMP_TIMEZONE, \ properFinderScheduler, \ PROVIDER_ORDER, \ autoPostProcessorScheduler, \ providerList, \ newznabProviderList, \ torrentRssProviderList, \ EXTRA_SCRIPTS, \ USE_TWITTER, \ TWITTER_USERNAME, \ TWITTER_PASSWORD, \ TWITTER_PREFIX, \ DAILYSEARCH_FREQUENCY, \ TWITTER_DMTO, \ TWITTER_USEDM, \ USE_TWILIO, \ TWILIO_NOTIFY_ONSNATCH, \ TWILIO_NOTIFY_ONDOWNLOAD, \ TWILIO_NOTIFY_ONSUBTITLEDOWNLOAD, \ TWILIO_PHONE_SID, \ TWILIO_ACCOUNT_SID, \ TWILIO_AUTH_TOKEN, \ TWILIO_TO_NUMBER, \ USE_BOXCAR2, \ BOXCAR2_ACCESSTOKEN, \ BOXCAR2_NOTIFY_ONDOWNLOAD, \ BOXCAR2_NOTIFY_ONSUBTITLEDOWNLOAD, \ BOXCAR2_NOTIFY_ONSNATCH, \ USE_PUSHOVER, \ PUSHOVER_USERKEY, \ PUSHOVER_APIKEY, \ PUSHOVER_DEVICE, \ PUSHOVER_NOTIFY_ONDOWNLOAD, \ PUSHOVER_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHOVER_NOTIFY_ONSNATCH, \ PUSHOVER_SOUND, \ PUSHOVER_PRIORITY, \ USE_LIBNOTIFY, \ LIBNOTIFY_NOTIFY_ONSNATCH, \ LIBNOTIFY_NOTIFY_ONDOWNLOAD, \ LIBNOTIFY_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_NMJ, \ NMJ_HOST, \ NMJ_DATABASE, \ NMJ_MOUNT, \ USE_NMJv2, \ NMJv2_HOST, \ NMJv2_DATABASE, \ NMJv2_DBLOC, \ USE_SYNOINDEX, \ USE_SYNOLOGYNOTIFIER, \ SYNOLOGYNOTIFIER_NOTIFY_ONSNATCH, \ SYNOLOGYNOTIFIER_NOTIFY_ONDOWNLOAD, \ SYNOLOGYNOTIFIER_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_EMAIL, \ EMAIL_HOST, \ EMAIL_PORT, \ EMAIL_TLS, \ EMAIL_USER, \ EMAIL_PASSWORD, \ EMAIL_FROM, \ EMAIL_NOTIFY_ONSNATCH, \ EMAIL_NOTIFY_ONDOWNLOAD, \ EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD, \ EMAIL_LIST, \ EMAIL_SUBJECT, \ USE_LISTVIEW, \ METADATA_KODI, \ METADATA_KODI_12PLUS, \ METADATA_MEDIABROWSER, \ METADATA_PS3, \ metadata_provider_dict, \ NEWZBIN, \ NEWZBIN_USERNAME, \ NEWZBIN_PASSWORD, \ GIT_PATH, \ MOVE_ASSOCIATED_FILES, \ DELETE_NON_ASSOCIATED_FILES, \ SYNC_FILES, \ POSTPONE_IF_SYNC_FILES, \ dailySearchScheduler, \ NFO_RENAME, \ GUI_NAME, \ HOME_LAYOUT, \ HISTORY_LAYOUT, \ DISPLAY_SHOW_SPECIALS, \ COMING_EPS_LAYOUT, \ COMING_EPS_SORT, \ COMING_EPS_DISPLAY_PAUSED, \ COMING_EPS_MISSED_RANGE, \ FUZZY_DATING, \ TRIM_ZERO, \ DATE_PRESET, \ TIME_PRESET, \ TIME_PRESET_W_SECONDS, \ THEME_NAME, \ POSTER_SORTBY, \ POSTER_SORTDIR, \ HISTORY_LIMIT, \ CREATE_MISSING_SHOW_DIRS, \ ADD_SHOWS_WO_DIR, \ USE_FREE_SPACE_CHECK, \ METADATA_WDTV, \ METADATA_TIVO, \ METADATA_MEDE8ER, \ IGNORE_WORDS, \ TRACKERS_LIST, \ IGNORED_SUBS_LIST, \ REQUIRE_WORDS, \ CALENDAR_UNPROTECTED, \ CALENDAR_ICONS, \ NO_RESTART, \ USE_SUBTITLES, \ SUBTITLES_INCLUDE_SPECIALS, \ SUBTITLES_LANGUAGES, \ SUBTITLES_DIR, \ SUBTITLES_SERVICES_LIST, \ SUBTITLES_SERVICES_ENABLED, \ SUBTITLES_HISTORY, \ SUBTITLES_FINDER_FREQUENCY, \ SUBTITLES_MULTI, \ SUBTITLES_KEEP_ONLY_WANTED, \ EMBEDDED_SUBTITLES_ALL, \ SUBTITLES_EXTRA_SCRIPTS, \ SUBTITLES_PERFECT_MATCH, \ subtitlesFinderScheduler, \ SUBTITLES_HEARING_IMPAIRED, \ ADDIC7ED_USER, \ ADDIC7ED_PASS, \ ITASA_USER, \ ITASA_PASS, \ LEGENDASTV_USER, \ LEGENDASTV_PASS, \ OPENSUBTITLES_USER, \ OPENSUBTITLES_PASS, \ USE_FAILED_DOWNLOADS, \ DELETE_FAILED, \ ANON_REDIRECT, \ LOCALHOST_IP, \ DEBUG, \ DBDEBUG, \ DEFAULT_PAGE, \ PROXY_SETTING, \ PROXY_INDEXERS, \ AUTOPOSTPROCESSOR_FREQUENCY, \ SHOWUPDATE_HOUR, \ ANIME_DEFAULT, \ NAMING_ANIME, \ ANIMESUPPORT, \ USE_ANIDB, \ ANIDB_USERNAME, \ ANIDB_PASSWORD, \ ANIDB_USE_MYLIST, \ ANIME_SPLIT_HOME, \ ANIME_SPLIT_HOME_IN_TABS, \ SCENE_DEFAULT, \ DOWNLOAD_URL, \ BACKLOG_DAYS, \ GIT_AUTH_TYPE, \ GIT_USERNAME, \ GIT_PASSWORD, \ GIT_TOKEN, \ DEVELOPER, \ DISPLAY_ALL_SEASONS, \ SSL_VERIFY, \ NEWS_LAST_READ, \ NEWS_LATEST, \ SOCKET_TIMEOUT, \ SYNOLOGY_DSM_HOST, \ SYNOLOGY_DSM_USERNAME, \ SYNOLOGY_DSM_PASSWORD, \ SYNOLOGY_DSM_PATH, \ GUI_LANG, \ SICKRAGE_BACKGROUND, \ SICKRAGE_BACKGROUND_PATH, \ FANART_BACKGROUND, \ FANART_BACKGROUND_OPACITY, \ USE_SLACK, \ SLACK_NOTIFY_SNATCH, \ SLACK_NOTIFY_DOWNLOAD, \ SLACK_WEBHOOK, \ USE_DISCORD, \ DISCORD_NOTIFY_SNATCH, \ DISCORD_NOTIFY_DOWNLOAD, \ DISCORD_WEBHOOK if __INITIALIZED__: return False check_section(CFG, "General") check_section(CFG, "Blackhole") check_section(CFG, "Newzbin") check_section(CFG, "SABnzbd") check_section(CFG, "NZBget") check_section(CFG, "KODI") check_section(CFG, "PLEX") check_section(CFG, "Emby") check_section(CFG, "Growl") check_section(CFG, "Prowl") check_section(CFG, "Twitter") check_section(CFG, "Boxcar2") check_section(CFG, "NMJ") check_section(CFG, "NMJv2") check_section(CFG, "Synology") check_section(CFG, "SynologyNotifier") check_section(CFG, "pyTivo") check_section(CFG, "NMA") check_section(CFG, "Pushalot") check_section(CFG, "Pushbullet") check_section(CFG, "Subtitles") check_section(CFG, "pyTivo") check_section(CFG, "Slack") check_section(CFG, "Discord") # Need to be before any passwords ENCRYPTION_VERSION = check_setting_int( CFG, "General", "encryption_version", min_val=0, max_val=2 ) ENCRYPTION_SECRET = check_setting_str( CFG, "General", "encryption_secret", helpers.generateCookieSecret(), censor_log=True, ) # git login info GIT_AUTH_TYPE = check_setting_int( CFG, "General", "git_auth_type", min_val=0, max_val=1 ) GIT_USERNAME = check_setting_str(CFG, "General", "git_username") GIT_PASSWORD = check_setting_str( CFG, "General", "git_password", censor_log=True ) GIT_TOKEN = check_setting_str( CFG, "General", "git_token_password", censor_log=True ) # encryption needed DEVELOPER = check_setting_bool(CFG, "General", "developer") # debugging DEBUG = check_setting_bool(CFG, "General", "debug") DBDEBUG = check_setting_bool(CFG, "General", "dbdebug") DEFAULT_PAGE = check_setting_str(CFG, "General", "default_page", "home") if DEFAULT_PAGE not in ("home", "schedule", "history", "news", "IRC"): DEFAULT_PAGE = "home" ACTUAL_LOG_DIR = check_setting_str(CFG, "General", "log_dir", "Logs") LOG_DIR = ek(os.path.normpath, ek(os.path.join, DATA_DIR, ACTUAL_LOG_DIR)) LOG_NR = check_setting_int( CFG, "General", "log_nr", 5, min_val=1 ) # Default to 5 backup file (sickrage.log.x) LOG_SIZE = check_setting_float( CFG, "General", "log_size", 10.0, min_val=0.5 ) # Default to max 10MB per logfile if LOG_SIZE > 100: LOG_SIZE = 10.0 fileLogging = True if not helpers.makeDir(LOG_DIR): sys.stderr.write("!!! No log folder, logging to screen only!\n") fileLogging = False # init logging logger.init_logging( console_logging=consoleLogging, file_logging=fileLogging, debug_logging=DEBUG, database_logging=DBDEBUG, ) # Initializes sickbeard.gh setup_github() # git reset on update GIT_RESET = check_setting_bool(CFG, "General", "git_reset", True) # current git branch BRANCH = check_setting_str(CFG, "General", "branch") # git_remote GIT_REMOTE = check_setting_str(CFG, "General", "git_remote", "origin") GIT_REMOTE_URL = check_setting_str( CFG, "General", "git_remote_url", "https://github.com/{0}/{1}.git".format(GIT_ORG, GIT_REPO), ) if "sickragetv" in GIT_REMOTE_URL.lower(): GIT_REMOTE_URL = "https://github.com/SickRage/SickRage.git" # current commit hash CUR_COMMIT_HASH = check_setting_str(CFG, "General", "cur_commit_hash") # current commit branch CUR_COMMIT_BRANCH = check_setting_str(CFG, "General", "cur_commit_branch") ACTUAL_CACHE_DIR = check_setting_str(CFG, "General", "cache_dir", "cache") # fix bad configs due to buggy code if ACTUAL_CACHE_DIR == "None": ACTUAL_CACHE_DIR = "cache" # unless they specify, put the cache dir inside the data dir if not ek(os.path.isabs, ACTUAL_CACHE_DIR): CACHE_DIR = ek(os.path.join, DATA_DIR, ACTUAL_CACHE_DIR) else: CACHE_DIR = ACTUAL_CACHE_DIR if not helpers.makeDir(CACHE_DIR): logger.log( "!!! Creating local cache dir failed, using system default", logger.ERROR, ) CACHE_DIR = None # Check if we need to perform a restore of the cache folder try: restoreDir = ek(os.path.join, DATA_DIR, "restore") if ek(os.path.exists, restoreDir) and ek( os.path.exists, ek(os.path.join, restoreDir, "cache") ): def restoreCache(srcDir, dstDir): def path_leaf(path): head, tail = ek(os.path.split, path) return tail or ek(os.path.basename, head) try: if ek(os.path.isdir, dstDir): bakFilename = "{0}-{1}".format( path_leaf(dstDir), datetime.datetime.strftime( datetime.datetime.now(), "%Y%m%d_%H%M%S" ), ) shutil.move( dstDir, ek( os.path.join, ek(os.path.dirname, dstDir), bakFilename, ), ) shutil.move(srcDir, dstDir) logger.log("Restore: restoring cache successful", logger.INFO) except Exception as e: logger.log( "Restore: restoring cache failed: {0}".format(e), logger.ERROR, ) restoreCache(ek(os.path.join, restoreDir, "cache"), CACHE_DIR) except Exception as e: logger.log( "Restore: restoring cache failed: {0}".format(ex(e)), logger.ERROR ) finally: if ek(os.path.exists, ek(os.path.join, DATA_DIR, "restore")): try: shutil.rmtree(ek(os.path.join, DATA_DIR, "restore")) except Exception as e: logger.log( "Restore: Unable to remove the restore directory: {0}".format( ex(e) ), logger.ERROR, ) for cleanupDir in ["mako", "sessions", "indexers", "rss"]: try: shutil.rmtree(ek(os.path.join, CACHE_DIR, cleanupDir)) except Exception as e: if cleanupDir not in ["rss", "sessions", "indexers"]: logger.log( "Restore: Unable to remove the cache/{0} directory: {1}".format( cleanupDir, ex(e) ), logger.WARNING, ) THEME_NAME = check_setting_str(CFG, "GUI", "theme_name", "dark") SICKRAGE_BACKGROUND = check_setting_bool(CFG, "GUI", "sickrage_background") SICKRAGE_BACKGROUND_PATH = check_setting_str( CFG, "GUI", "sickrage_background_path" ) FANART_BACKGROUND = check_setting_bool(CFG, "GUI", "fanart_background", True) FANART_BACKGROUND_OPACITY = check_setting_float( CFG, "GUI", "fanart_background_opacity", 0.4, min_val=0.1, max_val=1.0 ) GUI_NAME = check_setting_str(CFG, "GUI", "gui_name", "slick") GUI_LANG = check_setting_str(CFG, "GUI", "language") if GUI_LANG: gettext.translation( "messages", LOCALE_DIR, languages=[GUI_LANG], codeset="UTF-8" ).install(unicode=1) else: gettext.install("messages", LOCALE_DIR, unicode=1, codeset="UTF-8") load_gettext_translations(LOCALE_DIR, "messages") SOCKET_TIMEOUT = check_setting_int( CFG, "General", "socket_timeout", 30, min_val=0 ) socket.setdefaulttimeout(SOCKET_TIMEOUT) try: WEB_PORT = check_setting_int( CFG, "General", "web_port", 8081, min_val=21, max_val=65535 ) except Exception: WEB_PORT = 8081 WEB_HOST = check_setting_str(CFG, "General", "web_host", "0.0.0.0") WEB_IPV6 = check_setting_bool(CFG, "General", "web_ipv6") WEB_ROOT = check_setting_str(CFG, "General", "web_root").rstrip("/") WEB_LOG = check_setting_bool(CFG, "General", "web_log") WEB_USERNAME = check_setting_str( CFG, "General", "web_username", censor_log=True ) WEB_PASSWORD = check_setting_str( CFG, "General", "web_password", censor_log=True ) WEB_COOKIE_SECRET = check_setting_str( CFG, "General", "web_cookie_secret", helpers.generateCookieSecret(), censor_log=True, ) if not WEB_COOKIE_SECRET: WEB_COOKIE_SECRET = helpers.generateCookieSecret() WEB_USE_GZIP = check_setting_bool(CFG, "General", "web_use_gzip", True) SSL_VERIFY = check_setting_bool(CFG, "General", "ssl_verify", True) INDEXER_DEFAULT_LANGUAGE = check_setting_str( CFG, "General", "indexerDefaultLang", "en" ) EP_DEFAULT_DELETED_STATUS = check_setting_int( CFG, "General", "ep_default_deleted_status", ARCHIVED ) if EP_DEFAULT_DELETED_STATUS not in (SKIPPED, ARCHIVED, IGNORED): EP_DEFAULT_DELETED_STATUS = ARCHIVED LAUNCH_BROWSER = check_setting_bool(CFG, "General", "launch_browser", True) DOWNLOAD_URL = check_setting_str(CFG, "General", "download_url") LOCALHOST_IP = check_setting_str(CFG, "General", "localhost_ip") CPU_PRESET = check_setting_str(CFG, "General", "cpu_preset", "NORMAL") ANON_REDIRECT = check_setting_str( CFG, "General", "anon_redirect", "http://dereferer.org/?" ) PROXY_SETTING = check_setting_str(CFG, "General", "proxy_setting") PROXY_INDEXERS = check_setting_bool(CFG, "General", "proxy_indexers", True) # attempt to help prevent users from breaking links by using a bad url if not ANON_REDIRECT.endswith("?"): ANON_REDIRECT = "" TRASH_REMOVE_SHOW = check_setting_bool(CFG, "General", "trash_remove_show") TRASH_ROTATE_LOGS = check_setting_bool(CFG, "General", "trash_rotate_logs") SORT_ARTICLE = check_setting_bool(CFG, "General", "sort_article") API_KEY = check_setting_str(CFG, "General", "api_key", censor_log=True) ENABLE_HTTPS = check_setting_bool(CFG, "General", "enable_https") NOTIFY_ON_LOGIN = check_setting_bool(CFG, "General", "notify_on_login") HTTPS_CERT = check_setting_str(CFG, "General", "https_cert", "server.crt") HTTPS_KEY = check_setting_str(CFG, "General", "https_key", "server.key") HANDLE_REVERSE_PROXY = check_setting_bool( CFG, "General", "handle_reverse_proxy" ) ROOT_DIRS = check_setting_str(CFG, "General", "root_dirs") if not re.match(r"\d+\|[^|]+(?:\|[^|]+)*", ROOT_DIRS): ROOT_DIRS = "" QUALITY_DEFAULT = check_setting_int(CFG, "General", "quality_default", SD) STATUS_DEFAULT = check_setting_int(CFG, "General", "status_default", SKIPPED) if STATUS_DEFAULT not in (SKIPPED, WANTED, IGNORED): STATUS_DEFAULT = SKIPPED STATUS_DEFAULT_AFTER = check_setting_int( CFG, "General", "status_default_after", WANTED ) if STATUS_DEFAULT_AFTER not in (SKIPPED, WANTED, IGNORED): STATUS_DEFAULT_AFTER = WANTED VERSION_NOTIFY = check_setting_bool(CFG, "General", "version_notify", True) AUTO_UPDATE = check_setting_bool(CFG, "General", "auto_update") NOTIFY_ON_UPDATE = check_setting_bool(CFG, "General", "notify_on_update", True) SEASON_FOLDERS_DEFAULT = check_setting_bool( CFG, "General", "season_folders_default", True ) INDEXER_DEFAULT = check_setting_int( CFG, "General", "indexer_default", min_val=min(indexerApi().indexers), max_val=max(indexerApi().indexers), ) INDEXER_TIMEOUT = check_setting_int( CFG, "General", "indexer_timeout", 20, min_val=0 ) ANIME_DEFAULT = check_setting_bool(CFG, "General", "anime_default") SCENE_DEFAULT = check_setting_bool(CFG, "General", "scene_default") PROVIDER_ORDER = check_setting_str(CFG, "General", "provider_order").split() NAMING_PATTERN = check_setting_str( CFG, "General", "naming_pattern", "Season %0S/%SN - S%0SE%0E - %EN" ) NAMING_ABD_PATTERN = check_setting_str( CFG, "General", "naming_abd_pattern", "%SN - %A.D - %EN" ) NAMING_CUSTOM_ABD = check_setting_bool(CFG, "General", "naming_custom_abd") NAMING_SPORTS_PATTERN = check_setting_str( CFG, "General", "naming_sports_pattern", "%SN - %A-D - %EN" ) NAMING_ANIME_PATTERN = check_setting_str( CFG, "General", "naming_anime_pattern", "Season %0S/%SN - S%0SE%0E - %EN" ) NAMING_ANIME = check_setting_int( CFG, "General", "naming_anime", 3, min_val=1, max_val=3 ) NAMING_CUSTOM_SPORTS = check_setting_bool( CFG, "General", "naming_custom_sports" ) NAMING_CUSTOM_ANIME = check_setting_bool(CFG, "General", "naming_custom_anime") NAMING_MULTI_EP = check_setting_int( CFG, "General", "naming_multi_ep", 1, min_val=1, max_val=max(MULTI_EP_STRINGS), ) NAMING_ANIME_MULTI_EP = check_setting_int( CFG, "General", "naming_anime_multi_ep", 1, min_val=1, max_val=max(MULTI_EP_STRINGS), ) NAMING_FORCE_FOLDERS = naming.check_force_season_folders() NAMING_STRIP_YEAR = check_setting_bool(CFG, "General", "naming_strip_year") USE_NZBS = check_setting_bool(CFG, "General", "use_nzbs") USE_TORRENTS = check_setting_bool(CFG, "General", "use_torrents", True) NZB_METHOD = check_setting_str(CFG, "General", "nzb_method", "blackhole") if NZB_METHOD not in ("blackhole", "sabnzbd", "nzbget", "download_station"): NZB_METHOD = "blackhole" TORRENT_METHOD = check_setting_str( CFG, "General", "torrent_method", "blackhole" ) if TORRENT_METHOD not in ( "blackhole", "utorrent", "transmission", "deluge", "deluged", "download_station", "rtorrent", "qbittorrent", "mlnet", "putio", ): TORRENT_METHOD = "blackhole" DOWNLOAD_PROPERS = check_setting_bool(CFG, "General", "download_propers", True) CHECK_PROPERS_INTERVAL = check_setting_str( CFG, "General", "check_propers_interval" ) if CHECK_PROPERS_INTERVAL not in ("15m", "45m", "90m", "4h", "daily"): CHECK_PROPERS_INTERVAL = "daily" RANDOMIZE_PROVIDERS = check_setting_bool(CFG, "General", "randomize_providers") ALLOW_HIGH_PRIORITY = check_setting_bool( CFG, "General", "allow_high_priority", True ) SKIP_REMOVED_FILES = check_setting_bool(CFG, "General", "skip_removed_files") ALLOWED_EXTENSIONS = check_setting_str( CFG, "General", "allowed_extensions", ALLOWED_EXTENSIONS ) USENET_RETENTION = check_setting_int(CFG, "General", "usenet_retention", 500) AUTOPOSTPROCESSOR_FREQUENCY = check_setting_int( CFG, "General", "autopostprocessor_frequency", DEFAULT_AUTOPOSTPROCESSOR_FREQUENCY, min_val=MIN_AUTOPOSTPROCESSOR_FREQUENCY, fallback_def=False, ) DAILYSEARCH_FREQUENCY = check_setting_int( CFG, "General", "dailysearch_frequency", DEFAULT_DAILYSEARCH_FREQUENCY, min_val=MIN_DAILYSEARCH_FREQUENCY, fallback_def=False, ) MIN_BACKLOG_FREQUENCY = get_backlog_cycle_time() BACKLOG_FREQUENCY = check_setting_int( CFG, "General", "backlog_frequency", DEFAULT_BACKLOG_FREQUENCY, min_val=MIN_BACKLOG_FREQUENCY, fallback_def=False, ) UPDATE_FREQUENCY = check_setting_int( CFG, "General", "update_frequency", DEFAULT_UPDATE_FREQUENCY, min_val=MIN_UPDATE_FREQUENCY, fallback_def=False, ) SHOWUPDATE_HOUR = check_setting_int( CFG, "General", "showupdate_hour", DEFAULT_SHOWUPDATE_HOUR, min_val=0, max_val=23, ) BACKLOG_DAYS = check_setting_int(CFG, "General", "backlog_days", 7) NEWS_LAST_READ = check_setting_str( CFG, "General", "news_last_read", "1970-01-01" ) NEWS_LATEST = NEWS_LAST_READ NZB_DIR = check_setting_str(CFG, "Blackhole", "nzb_dir") TORRENT_DIR = check_setting_str(CFG, "Blackhole", "torrent_dir") TV_DOWNLOAD_DIR = check_setting_str(CFG, "General", "tv_download_dir") PROCESS_AUTOMATICALLY = check_setting_bool( CFG, "General", "process_automatically" ) NO_DELETE = check_setting_bool(CFG, "General", "no_delete") USE_ICACLS = check_setting_bool(CFG, "General", "use_icacls", True) UNPACK = check_setting_int(CFG, "General", "unpack", min_val=0, max_val=2) UNPACK_DIR = check_setting_str(CFG, "General", "unpack_dir") config.change_unrar_tool( check_setting_str(CFG, "General", "unrar_tool", rarfile.UNRAR_TOOL), check_setting_str(CFG, "General", "alt_unrar_tool", rarfile.ALT_TOOL), ) RENAME_EPISODES = check_setting_bool(CFG, "General", "rename_episodes", True) AIRDATE_EPISODES = check_setting_bool(CFG, "General", "airdate_episodes") FILE_TIMESTAMP_TIMEZONE = check_setting_str( CFG, "General", "file_timestamp_timezone", "network" ) KEEP_PROCESSED_DIR = check_setting_bool( CFG, "General", "keep_processed_dir", True ) PROCESS_METHOD = check_setting_str( CFG, "General", "process_method", "copy" if KEEP_PROCESSED_DIR else "move" ) PROCESSOR_FOLLOW_SYMLINKS = check_setting_bool( CFG, "General", "processor_follow_symlinks" ) DELRARCONTENTS = check_setting_bool(CFG, "General", "del_rar_contents") MOVE_ASSOCIATED_FILES = check_setting_bool( CFG, "General", "move_associated_files" ) DELETE_NON_ASSOCIATED_FILES = check_setting_bool( CFG, "General", "delete_non_associated_files", True ) POSTPONE_IF_SYNC_FILES = check_setting_bool( CFG, "General", "postpone_if_sync_files", True ) SYNC_FILES = check_setting_str(CFG, "General", "sync_files", SYNC_FILES) NFO_RENAME = check_setting_bool(CFG, "General", "nfo_rename", True) CREATE_MISSING_SHOW_DIRS = check_setting_bool( CFG, "General", "create_missing_show_dirs" ) ADD_SHOWS_WO_DIR = check_setting_bool(CFG, "General", "add_shows_wo_dir") USE_FREE_SPACE_CHECK = check_setting_bool( CFG, "General", "use_free_space_check", True ) NZBS = check_setting_bool(CFG, "NZBs", "nzbs") NZBS_UID = check_setting_str(CFG, "NZBs", "nzbs_uid", censor_log=True) NZBS_HASH = check_setting_str(CFG, "NZBs", "nzbs_hash", censor_log=True) NEWZBIN = check_setting_bool(CFG, "Newzbin", "newzbin") NEWZBIN_USERNAME = check_setting_str( CFG, "Newzbin", "newzbin_username", censor_log=True ) NEWZBIN_PASSWORD = check_setting_str( CFG, "Newzbin", "newzbin_password", censor_log=True ) SAB_USERNAME = check_setting_str( CFG, "SABnzbd", "sab_username", censor_log=True ) SAB_PASSWORD = check_setting_str( CFG, "SABnzbd", "sab_password", censor_log=True ) SAB_APIKEY = check_setting_str(CFG, "SABnzbd", "sab_apikey", censor_log=True) SAB_CATEGORY = check_setting_str(CFG, "SABnzbd", "sab_category", "tv") SAB_CATEGORY_BACKLOG = check_setting_str( CFG, "SABnzbd", "sab_category_backlog", SAB_CATEGORY ) SAB_CATEGORY_ANIME = check_setting_str( CFG, "SABnzbd", "sab_category_anime", "anime" ) SAB_CATEGORY_ANIME_BACKLOG = check_setting_str( CFG, "SABnzbd", "sab_category_anime_backlog", SAB_CATEGORY_ANIME ) SAB_HOST = check_setting_str(CFG, "SABnzbd", "sab_host") SAB_FORCED = check_setting_bool(CFG, "SABnzbd", "sab_forced") NZBGET_USERNAME = check_setting_str( CFG, "NZBget", "nzbget_username", "nzbget", censor_log=True ) NZBGET_PASSWORD = check_setting_str( CFG, "NZBget", "nzbget_password", "tegbzn6789", censor_log=True ) NZBGET_CATEGORY = check_setting_str(CFG, "NZBget", "nzbget_category", "tv") NZBGET_CATEGORY_BACKLOG = check_setting_str( CFG, "NZBget", "nzbget_category_backlog", NZBGET_CATEGORY ) NZBGET_CATEGORY_ANIME = check_setting_str( CFG, "NZBget", "nzbget_category_anime", "anime" ) NZBGET_CATEGORY_ANIME_BACKLOG = check_setting_str( CFG, "NZBget", "nzbget_category_anime_backlog", NZBGET_CATEGORY_ANIME ) NZBGET_HOST = check_setting_str(CFG, "NZBget", "nzbget_host") NZBGET_USE_HTTPS = check_setting_bool(CFG, "NZBget", "nzbget_use_https") NZBGET_PRIORITY = check_setting_int(CFG, "NZBget", "nzbget_priority", 100) if NZBGET_PRIORITY not in (-100, -50, 0, 50, 100, 900): NZBGET_PRIORITY = 100 TORRENT_USERNAME = check_setting_str( CFG, "TORRENT", "torrent_username", censor_log=True ) TORRENT_PASSWORD = check_setting_str( CFG, "TORRENT", "torrent_password", censor_log=True ) TORRENT_HOST = check_setting_str(CFG, "TORRENT", "torrent_host") TORRENT_PATH = check_setting_str(CFG, "TORRENT", "torrent_path") TORRENT_SEED_TIME = check_setting_int( CFG, "TORRENT", "torrent_seed_time", min_val=-1 ) TORRENT_PAUSED = check_setting_bool(CFG, "TORRENT", "torrent_paused") TORRENT_HIGH_BANDWIDTH = check_setting_bool( CFG, "TORRENT", "torrent_high_bandwidth" ) TORRENT_LABEL = check_setting_str(CFG, "TORRENT", "torrent_label") TORRENT_LABEL_ANIME = check_setting_str(CFG, "TORRENT", "torrent_label_anime") TORRENT_VERIFY_CERT = check_setting_bool(CFG, "TORRENT", "torrent_verify_cert") TORRENT_RPCURL = check_setting_str( CFG, "TORRENT", "torrent_rpcurl", "transmission" ) TORRENT_AUTH_TYPE = check_setting_str(CFG, "TORRENT", "torrent_auth_type") SYNOLOGY_DSM_HOST = check_setting_str(CFG, "Synology", "host") SYNOLOGY_DSM_USERNAME = check_setting_str( CFG, "Synology", "username", censor_log=True ) SYNOLOGY_DSM_PASSWORD = check_setting_str( CFG, "Synology", "password", censor_log=True ) SYNOLOGY_DSM_PATH = check_setting_str(CFG, "Synology", "path") USE_KODI = check_setting_bool(CFG, "KODI", "use_kodi") KODI_ALWAYS_ON = check_setting_bool(CFG, "KODI", "kodi_always_on", True) KODI_NOTIFY_ONSNATCH = check_setting_bool(CFG, "KODI", "kodi_notify_onsnatch") KODI_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "KODI", "kodi_notify_ondownload" ) KODI_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "KODI", "kodi_notify_onsubtitledownload" ) KODI_UPDATE_LIBRARY = check_setting_bool(CFG, "KODI", "kodi_update_library") KODI_UPDATE_FULL = check_setting_bool(CFG, "KODI", "kodi_update_full") KODI_UPDATE_ONLYFIRST = check_setting_bool(CFG, "KODI", "kodi_update_onlyfirst") KODI_HOST = check_setting_str(CFG, "KODI", "kodi_host") KODI_USERNAME = check_setting_str(CFG, "KODI", "kodi_username", censor_log=True) KODI_PASSWORD = check_setting_str(CFG, "KODI", "kodi_password", censor_log=True) USE_PLEX_SERVER = check_setting_bool(CFG, "Plex", "use_plex_server") PLEX_NOTIFY_ONSNATCH = check_setting_bool(CFG, "Plex", "plex_notify_onsnatch") PLEX_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Plex", "plex_notify_ondownload" ) PLEX_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Plex", "plex_notify_onsubtitledownload" ) PLEX_UPDATE_LIBRARY = check_setting_bool(CFG, "Plex", "plex_update_library") PLEX_SERVER_HOST = check_setting_str(CFG, "Plex", "plex_server_host") PLEX_SERVER_TOKEN = check_setting_str(CFG, "Plex", "plex_server_token") PLEX_CLIENT_HOST = check_setting_str(CFG, "Plex", "plex_client_host") PLEX_SERVER_USERNAME = check_setting_str( CFG, "Plex", "plex_server_username", censor_log=True ) PLEX_SERVER_PASSWORD = check_setting_str( CFG, "Plex", "plex_server_password", censor_log=True ) USE_PLEX_CLIENT = check_setting_bool(CFG, "Plex", "use_plex_client") PLEX_CLIENT_USERNAME = check_setting_str( CFG, "Plex", "plex_client_username", censor_log=True ) PLEX_CLIENT_PASSWORD = check_setting_str( CFG, "Plex", "plex_client_password", censor_log=True ) PLEX_SERVER_HTTPS = check_setting_bool(CFG, "Plex", "plex_server_https") USE_EMBY = check_setting_bool(CFG, "Emby", "use_emby") EMBY_HOST = check_setting_str(CFG, "Emby", "emby_host") EMBY_APIKEY = check_setting_str(CFG, "Emby", "emby_apikey") USE_GROWL = check_setting_bool(CFG, "Growl", "use_growl") GROWL_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Growl", "growl_notify_onsnatch" ) GROWL_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Growl", "growl_notify_ondownload" ) GROWL_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Growl", "growl_notify_onsubtitledownload" ) GROWL_HOST = check_setting_str(CFG, "Growl", "growl_host") GROWL_PASSWORD = check_setting_str( CFG, "Growl", "growl_password", censor_log=True ) USE_FREEMOBILE = check_setting_bool(CFG, "FreeMobile", "use_freemobile") FREEMOBILE_NOTIFY_ONSNATCH = check_setting_bool( CFG, "FreeMobile", "freemobile_notify_onsnatch" ) FREEMOBILE_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "FreeMobile", "freemobile_notify_ondownload" ) FREEMOBILE_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "FreeMobile", "freemobile_notify_onsubtitledownload" ) FREEMOBILE_ID = check_setting_str(CFG, "FreeMobile", "freemobile_id") FREEMOBILE_APIKEY = check_setting_str(CFG, "FreeMobile", "freemobile_apikey") USE_TELEGRAM = check_setting_bool(CFG, "Telegram", "use_telegram") TELEGRAM_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Telegram", "telegram_notify_onsnatch" ) TELEGRAM_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Telegram", "telegram_notify_ondownload" ) TELEGRAM_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Telegram", "telegram_notify_onsubtitledownload" ) TELEGRAM_ID = check_setting_str(CFG, "Telegram", "telegram_id") TELEGRAM_APIKEY = check_setting_str(CFG, "Telegram", "telegram_apikey") USE_JOIN = check_setting_bool(CFG, "Join", "use_join") JOIN_NOTIFY_ONSNATCH = check_setting_bool(CFG, "Join", "join_notify_onsnatch") JOIN_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Join", "join_notify_ondownload" ) JOIN_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Join", "join_notify_onsubtitledownload" ) JOIN_ID = check_setting_str(CFG, "Join", "join_id") USE_PROWL = check_setting_bool(CFG, "Prowl", "use_prowl") PROWL_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Prowl", "prowl_notify_onsnatch" ) PROWL_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Prowl", "prowl_notify_ondownload" ) PROWL_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Prowl", "prowl_notify_onsubtitledownload" ) PROWL_API = check_setting_str(CFG, "Prowl", "prowl_api", censor_log=True) PROWL_PRIORITY = check_setting_str(CFG, "Prowl", "prowl_priority", "0") PROWL_MESSAGE_TITLE = check_setting_str( CFG, "Prowl", "prowl_message_title", "SickRage" ) USE_TWITTER = check_setting_bool(CFG, "Twitter", "use_twitter") TWITTER_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Twitter", "twitter_notify_onsnatch" ) TWITTER_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Twitter", "twitter_notify_ondownload" ) TWITTER_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Twitter", "twitter_notify_onsubtitledownload" ) TWITTER_USERNAME = check_setting_str( CFG, "Twitter", "twitter_username", censor_log=True ) TWITTER_PASSWORD = check_setting_str( CFG, "Twitter", "twitter_password", censor_log=True ) TWITTER_PREFIX = check_setting_str(CFG, "Twitter", "twitter_prefix", GIT_REPO) TWITTER_DMTO = check_setting_str(CFG, "Twitter", "twitter_dmto") TWITTER_USEDM = check_setting_bool(CFG, "Twitter", "twitter_usedm") USE_TWILIO = check_setting_bool(CFG, "Twilio", "use_twilio") TWILIO_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Twilio", "twilio_notify_onsnatch" ) TWILIO_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Twilio", "twilio_notify_ondownload" ) TWILIO_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Twilio", "twilio_notify_onsubtitledownload" ) TWILIO_PHONE_SID = check_setting_str( CFG, "Twilio", "twilio_phone_sid", censor_log=True ) TWILIO_ACCOUNT_SID = check_setting_str( CFG, "Twilio", "twilio_account_sid", censor_log=True ) TWILIO_AUTH_TOKEN = check_setting_str( CFG, "Twilio", "twilio_auth_token", censor_log=True ) TWILIO_TO_NUMBER = check_setting_str( CFG, "Twilio", "twilio_to_number", censor_log=True ) USE_BOXCAR2 = check_setting_bool(CFG, "Boxcar2", "use_boxcar2") BOXCAR2_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Boxcar2", "boxcar2_notify_onsnatch" ) BOXCAR2_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Boxcar2", "boxcar2_notify_ondownload" ) BOXCAR2_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Boxcar2", "boxcar2_notify_onsubtitledownload" ) BOXCAR2_ACCESSTOKEN = check_setting_str( CFG, "Boxcar2", "boxcar2_accesstoken", censor_log=True ) USE_PUSHOVER = check_setting_bool(CFG, "Pushover", "use_pushover") PUSHOVER_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Pushover", "pushover_notify_onsnatch" ) PUSHOVER_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Pushover", "pushover_notify_ondownload" ) PUSHOVER_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Pushover", "pushover_notify_onsubtitledownload" ) PUSHOVER_USERKEY = check_setting_str( CFG, "Pushover", "pushover_userkey", censor_log=True ) PUSHOVER_APIKEY = check_setting_str( CFG, "Pushover", "pushover_apikey", censor_log=True ) PUSHOVER_DEVICE = check_setting_str(CFG, "Pushover", "pushover_device") PUSHOVER_SOUND = check_setting_str( CFG, "Pushover", "pushover_sound", "pushover" ) PUSHOVER_PRIORITY = check_setting_str(CFG, "Pushover", "pushover_priority", "0") USE_LIBNOTIFY = check_setting_bool(CFG, "Libnotify", "use_libnotify") LIBNOTIFY_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Libnotify", "libnotify_notify_onsnatch" ) LIBNOTIFY_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Libnotify", "libnotify_notify_ondownload" ) LIBNOTIFY_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Libnotify", "libnotify_notify_onsubtitledownload" ) USE_NMJ = check_setting_bool(CFG, "NMJ", "use_nmj") NMJ_HOST = check_setting_str(CFG, "NMJ", "nmj_host") NMJ_DATABASE = check_setting_str(CFG, "NMJ", "nmj_database") NMJ_MOUNT = check_setting_str(CFG, "NMJ", "nmj_mount") USE_NMJv2 = check_setting_bool(CFG, "NMJv2", "use_nmjv2") NMJv2_HOST = check_setting_str(CFG, "NMJv2", "nmjv2_host") NMJv2_DATABASE = check_setting_str(CFG, "NMJv2", "nmjv2_database") NMJv2_DBLOC = check_setting_str(CFG, "NMJv2", "nmjv2_dbloc") USE_SYNOINDEX = check_setting_bool(CFG, "Synology", "use_synoindex") USE_SYNOLOGYNOTIFIER = check_setting_bool( CFG, "SynologyNotifier", "use_synologynotifier" ) SYNOLOGYNOTIFIER_NOTIFY_ONSNATCH = check_setting_bool( CFG, "SynologyNotifier", "synologynotifier_notify_onsnatch" ) SYNOLOGYNOTIFIER_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "SynologyNotifier", "synologynotifier_notify_ondownload" ) SYNOLOGYNOTIFIER_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "SynologyNotifier", "synologynotifier_notify_onsubtitledownload" ) USE_SLACK = check_setting_bool(CFG, "Slack", "use_slack") SLACK_NOTIFY_SNATCH = check_setting_bool(CFG, "Slack", "slack_notify_snatch") SLACK_NOTIFY_DOWNLOAD = check_setting_bool( CFG, "Slack", "slack_notify_download" ) SLACK_WEBHOOK = check_setting_str(CFG, "Slack", "slack_webhook") USE_DISCORD = check_setting_bool(CFG, "Discord", "use_discord") DISCORD_NOTIFY_SNATCH = check_setting_bool( CFG, "Discord", "discord_notify_snatch" ) DISCORD_NOTIFY_DOWNLOAD = check_setting_bool( CFG, "Discord", "discord_notify_download" ) DISCORD_WEBHOOK = check_setting_str(CFG, "Discord", "discord_webhook") USE_TRAKT = check_setting_bool(CFG, "Trakt", "use_trakt") TRAKT_USERNAME = check_setting_str( CFG, "Trakt", "trakt_username", censor_log=True ) TRAKT_ACCESS_TOKEN = check_setting_str( CFG, "Trakt", "trakt_access_token", censor_log=True ) TRAKT_REFRESH_TOKEN = check_setting_str( CFG, "Trakt", "trakt_refresh_token", censor_log=True ) TRAKT_REMOVE_WATCHLIST = check_setting_bool( CFG, "Trakt", "trakt_remove_watchlist" ) TRAKT_REMOVE_SERIESLIST = check_setting_bool( CFG, "Trakt", "trakt_remove_serieslist" ) TRAKT_REMOVE_SHOW_FROM_SICKRAGE = check_setting_bool( CFG, "Trakt", "trakt_remove_show_from_sickrage" ) TRAKT_SYNC_WATCHLIST = check_setting_bool(CFG, "Trakt", "trakt_sync_watchlist") TRAKT_METHOD_ADD = check_setting_int( CFG, "Trakt", "trakt_method_add", min_val=0, max_val=2 ) TRAKT_START_PAUSED = check_setting_bool(CFG, "Trakt", "trakt_start_paused") TRAKT_USE_RECOMMENDED = check_setting_bool( CFG, "Trakt", "trakt_use_recommended" ) TRAKT_SYNC = check_setting_bool(CFG, "Trakt", "trakt_sync") TRAKT_SYNC_REMOVE = check_setting_bool(CFG, "Trakt", "trakt_sync_remove") TRAKT_DEFAULT_INDEXER = check_setting_int( CFG, "Trakt", "trakt_default_indexer", 1, min_val=min(indexerApi().indexers), max_val=max(indexerApi().indexers), ) TRAKT_TIMEOUT = check_setting_int(CFG, "Trakt", "trakt_timeout", 30, min_val=0) TRAKT_BLACKLIST_NAME = check_setting_str(CFG, "Trakt", "trakt_blacklist_name") USE_PYTIVO = check_setting_bool(CFG, "pyTivo", "use_pytivo") PYTIVO_NOTIFY_ONSNATCH = check_setting_bool( CFG, "pyTivo", "pytivo_notify_onsnatch" ) PYTIVO_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "pyTivo", "pytivo_notify_ondownload" ) PYTIVO_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "pyTivo", "pytivo_notify_onsubtitledownload" ) PYTIVO_UPDATE_LIBRARY = check_setting_bool( CFG, "pyTivo", "pyTivo_update_library" ) PYTIVO_HOST = check_setting_str(CFG, "pyTivo", "pytivo_host") PYTIVO_SHARE_NAME = check_setting_str(CFG, "pyTivo", "pytivo_share_name") PYTIVO_TIVO_NAME = check_setting_str(CFG, "pyTivo", "pytivo_tivo_name") USE_NMA = check_setting_bool(CFG, "NMA", "use_nma") NMA_NOTIFY_ONSNATCH = check_setting_bool(CFG, "NMA", "nma_notify_onsnatch") NMA_NOTIFY_ONDOWNLOAD = check_setting_bool(CFG, "NMA", "nma_notify_ondownload") NMA_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "NMA", "nma_notify_onsubtitledownload" ) NMA_API = check_setting_str(CFG, "NMA", "nma_api", censor_log=True) NMA_PRIORITY = check_setting_str(CFG, "NMA", "nma_priority", "0") USE_PUSHALOT = check_setting_bool(CFG, "Pushalot", "use_pushalot") PUSHALOT_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Pushalot", "pushalot_notify_onsnatch" ) PUSHALOT_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Pushalot", "pushalot_notify_ondownload" ) PUSHALOT_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Pushalot", "pushalot_notify_onsubtitledownload" ) PUSHALOT_AUTHORIZATIONTOKEN = check_setting_str( CFG, "Pushalot", "pushalot_authorizationtoken", censor_log=True ) USE_PUSHBULLET = check_setting_bool(CFG, "Pushbullet", "use_pushbullet") PUSHBULLET_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Pushbullet", "pushbullet_notify_onsnatch" ) PUSHBULLET_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Pushbullet", "pushbullet_notify_ondownload" ) PUSHBULLET_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Pushbullet", "pushbullet_notify_onsubtitledownload" ) PUSHBULLET_API = check_setting_str( CFG, "Pushbullet", "pushbullet_api", censor_log=True ) PUSHBULLET_DEVICE = check_setting_str(CFG, "Pushbullet", "pushbullet_device") PUSHBULLET_CHANNEL = check_setting_str(CFG, "Pushbullet", "pushbullet_channel") USE_EMAIL = check_setting_bool(CFG, "Email", "use_email") EMAIL_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Email", "email_notify_onsnatch" ) EMAIL_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Email", "email_notify_ondownload" ) EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Email", "email_notify_onsubtitledownload" ) EMAIL_HOST = check_setting_str(CFG, "Email", "email_host") EMAIL_PORT = check_setting_int( CFG, "Email", "email_port", 25, min_val=21, max_val=65535 ) EMAIL_TLS = check_setting_bool(CFG, "Email", "email_tls") EMAIL_USER = check_setting_str(CFG, "Email", "email_user", censor_log=True) EMAIL_PASSWORD = check_setting_str( CFG, "Email", "email_password", censor_log=True ) EMAIL_FROM = check_setting_str(CFG, "Email", "email_from") EMAIL_LIST = check_setting_str(CFG, "Email", "email_list") EMAIL_SUBJECT = check_setting_str(CFG, "Email", "email_subject") USE_SUBTITLES = check_setting_bool(CFG, "Subtitles", "use_subtitles") SUBTITLES_INCLUDE_SPECIALS = check_setting_bool( CFG, "Subtitles", "subtitles_include_specials", True ) SUBTITLES_LANGUAGES = check_setting_str( CFG, "Subtitles", "subtitles_languages" ).split(",") if SUBTITLES_LANGUAGES[0] == "": SUBTITLES_LANGUAGES = [] SUBTITLES_DIR = check_setting_str(CFG, "Subtitles", "subtitles_dir") SUBTITLES_SERVICES_LIST = check_setting_str( CFG, "Subtitles", "SUBTITLES_SERVICES_LIST" ).split(",") SUBTITLES_SERVICES_ENABLED = [ int(x) for x in check_setting_str( CFG, "Subtitles", "SUBTITLES_SERVICES_ENABLED" ).split("|") if x ] SUBTITLES_DEFAULT = check_setting_bool(CFG, "Subtitles", "subtitles_default") SUBTITLES_HISTORY = check_setting_bool(CFG, "Subtitles", "subtitles_history") SUBTITLES_PERFECT_MATCH = check_setting_bool( CFG, "Subtitles", "subtitles_perfect_match", True ) EMBEDDED_SUBTITLES_ALL = check_setting_bool( CFG, "Subtitles", "embedded_subtitles_all" ) SUBTITLES_HEARING_IMPAIRED = check_setting_bool( CFG, "Subtitles", "subtitles_hearing_impaired" ) SUBTITLES_FINDER_FREQUENCY = check_setting_int( CFG, "Subtitles", "subtitles_finder_frequency", 1, min_val=1 ) SUBTITLES_MULTI = check_setting_bool(CFG, "Subtitles", "subtitles_multi", True) SUBTITLES_KEEP_ONLY_WANTED = check_setting_bool( CFG, "Subtitles", "subtitles_keep_only_wanted" ) SUBTITLES_EXTRA_SCRIPTS = [ x.strip() for x in check_setting_str( CFG, "Subtitles", "subtitles_extra_scripts" ).split("|") if x.strip() ] ADDIC7ED_USER = check_setting_str( CFG, "Subtitles", "addic7ed_username", censor_log=True ) ADDIC7ED_PASS = check_setting_str( CFG, "Subtitles", "addic7ed_password", censor_log=True ) ITASA_USER = check_setting_str( CFG, "Subtitles", "itasa_username", censor_log=True ) ITASA_PASS = check_setting_str( CFG, "Subtitles", "itasa_password", censor_log=True ) LEGENDASTV_USER = check_setting_str( CFG, "Subtitles", "legendastv_username", censor_log=True ) LEGENDASTV_PASS = check_setting_str( CFG, "Subtitles", "legendastv_password", censor_log=True ) OPENSUBTITLES_USER = check_setting_str( CFG, "Subtitles", "opensubtitles_username", censor_log=True ) OPENSUBTITLES_PASS = check_setting_str( CFG, "Subtitles", "opensubtitles_password", censor_log=True ) USE_FAILED_DOWNLOADS = check_setting_bool( CFG, "FailedDownloads", "use_failed_downloads" ) DELETE_FAILED = check_setting_bool(CFG, "FailedDownloads", "delete_failed") GIT_PATH = check_setting_str(CFG, "General", "git_path") IGNORE_WORDS = check_setting_str(CFG, "General", "ignore_words", IGNORE_WORDS) TRACKERS_LIST = check_setting_str( CFG, "General", "trackers_list", TRACKERS_LIST ) REQUIRE_WORDS = check_setting_str( CFG, "General", "require_words", REQUIRE_WORDS ) IGNORED_SUBS_LIST = check_setting_str( CFG, "General", "ignored_subs_list", IGNORED_SUBS_LIST ) CALENDAR_UNPROTECTED = check_setting_bool( CFG, "General", "calendar_unprotected" ) CALENDAR_ICONS = check_setting_bool(CFG, "General", "calendar_icons") NO_RESTART = check_setting_bool(CFG, "General", "no_restart") EXTRA_SCRIPTS = [ x.strip() for x in check_setting_str(CFG, "General", "extra_scripts").split("|") if x.strip() ] USE_LISTVIEW = check_setting_bool(CFG, "General", "use_listview") ANIMESUPPORT = False USE_ANIDB = check_setting_bool(CFG, "ANIDB", "use_anidb") ANIDB_USERNAME = check_setting_str( CFG, "ANIDB", "anidb_username", censor_log=True ) ANIDB_PASSWORD = check_setting_str( CFG, "ANIDB", "anidb_password", censor_log=True ) ANIDB_USE_MYLIST = check_setting_bool(CFG, "ANIDB", "anidb_use_mylist") ANIME_SPLIT_HOME = check_setting_bool(CFG, "ANIME", "anime_split_home") ANIME_SPLIT_HOME_IN_TABS = check_setting_bool( CFG, "ANIME", "anime_split_home_in_tabs" ) METADATA_KODI = check_setting_str( CFG, "General", "metadata_kodi", "0|0|0|0|0|0|0|0|0|0" ) METADATA_KODI_12PLUS = check_setting_str( CFG, "General", "metadata_kodi_12plus", "0|0|0|0|0|0|0|0|0|0" ) METADATA_MEDIABROWSER = check_setting_str( CFG, "General", "metadata_mediabrowser", "0|0|0|0|0|0|0|0|0|0" ) METADATA_PS3 = check_setting_str( CFG, "General", "metadata_ps3", "0|0|0|0|0|0|0|0|0|0" ) METADATA_WDTV = check_setting_str( CFG, "General", "metadata_wdtv", "0|0|0|0|0|0|0|0|0|0" ) METADATA_TIVO = check_setting_str( CFG, "General", "metadata_tivo", "0|0|0|0|0|0|0|0|0|0" ) METADATA_MEDE8ER = check_setting_str( CFG, "General", "metadata_mede8er", "0|0|0|0|0|0|0|0|0|0" ) HOME_LAYOUT = check_setting_str(CFG, "GUI", "home_layout", "poster") HISTORY_LAYOUT = check_setting_str(CFG, "GUI", "history_layout", "detailed") HISTORY_LIMIT = check_setting_str(CFG, "GUI", "history_limit", "100") DISPLAY_SHOW_SPECIALS = check_setting_bool( CFG, "GUI", "display_show_specials", True ) COMING_EPS_LAYOUT = check_setting_str(CFG, "GUI", "coming_eps_layout", "banner") COMING_EPS_DISPLAY_PAUSED = check_setting_bool( CFG, "GUI", "coming_eps_display_paused" ) COMING_EPS_SORT = check_setting_str(CFG, "GUI", "coming_eps_sort", "date") COMING_EPS_MISSED_RANGE = check_setting_int( CFG, "GUI", "coming_eps_missed_range", 7 ) FUZZY_DATING = check_setting_bool(CFG, "GUI", "fuzzy_dating") TRIM_ZERO = check_setting_bool(CFG, "GUI", "trim_zero") DATE_PRESET = check_setting_str(CFG, "GUI", "date_preset", "%x") TIME_PRESET_W_SECONDS = check_setting_str( CFG, "GUI", "time_preset", "%I:%M:%S %p" ) TIME_PRESET = TIME_PRESET_W_SECONDS.replace(":%S", "") TIMEZONE_DISPLAY = check_setting_str(CFG, "GUI", "timezone_display", "local") POSTER_SORTBY = check_setting_str(CFG, "GUI", "poster_sortby", "name") POSTER_SORTDIR = check_setting_int( CFG, "GUI", "poster_sortdir", 1, min_val=0, max_val=1 ) DISPLAY_ALL_SEASONS = check_setting_bool( CFG, "General", "display_all_seasons", True ) # initialize NZB and TORRENT providers providerList = providers.makeProviderList() NEWZNAB_DATA = check_setting_str(CFG, "Newznab", "newznab_data") newznabProviderList = NewznabProvider.get_providers_list(NEWZNAB_DATA) TORRENTRSS_DATA = check_setting_str(CFG, "TorrentRss", "torrentrss_data") torrentRssProviderList = TorrentRssProvider.get_providers_list(TORRENTRSS_DATA) # dynamically load provider settings for curTorrentProvider in [ curProvider for curProvider in providers.sortedProviderList() if curProvider.provider_type == GenericProvider.TORRENT ]: curTorrentProvider.enabled = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() ) if hasattr(curTorrentProvider, "custom_url"): curTorrentProvider.custom_url = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_custom_url", "", censor_log=True, ) if hasattr(curTorrentProvider, "api_key"): curTorrentProvider.api_key = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_api_key", censor_log=True, ) if hasattr(curTorrentProvider, "hash"): curTorrentProvider.hash = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_hash", censor_log=True, ) if hasattr(curTorrentProvider, "digest"): curTorrentProvider.digest = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_digest", censor_log=True, ) if hasattr(curTorrentProvider, "username"): curTorrentProvider.username = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_username", censor_log=True, ) if hasattr(curTorrentProvider, "password"): curTorrentProvider.password = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_password", censor_log=True, ) if hasattr(curTorrentProvider, "passkey"): curTorrentProvider.passkey = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_passkey", censor_log=True, ) if hasattr(curTorrentProvider, "pin"): curTorrentProvider.pin = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_pin", censor_log=True, ) if hasattr(curTorrentProvider, "confirmed"): curTorrentProvider.confirmed = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_confirmed", True, ) if hasattr(curTorrentProvider, "ranked"): curTorrentProvider.ranked = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_ranked", True, ) if hasattr(curTorrentProvider, "engrelease"): curTorrentProvider.engrelease = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_engrelease", ) if hasattr(curTorrentProvider, "onlyspasearch"): curTorrentProvider.onlyspasearch = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_onlyspasearch", ) if hasattr(curTorrentProvider, "sorting"): curTorrentProvider.sorting = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_sorting", "seeders", ) if hasattr(curTorrentProvider, "options"): curTorrentProvider.options = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_options", "", ) if hasattr(curTorrentProvider, "ratio"): curTorrentProvider.ratio = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_ratio", "", ) if hasattr(curTorrentProvider, "minseed"): curTorrentProvider.minseed = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_minseed", 1, min_val=0, ) if hasattr(curTorrentProvider, "minleech"): curTorrentProvider.minleech = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_minleech", 0, min_val=0, ) if hasattr(curTorrentProvider, "freeleech"): curTorrentProvider.freeleech = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_freeleech", ) if hasattr(curTorrentProvider, "search_mode"): curTorrentProvider.search_mode = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_search_mode", "eponly", ) if hasattr(curTorrentProvider, "search_fallback"): curTorrentProvider.search_fallback = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_search_fallback", ) if hasattr(curTorrentProvider, "enable_daily"): curTorrentProvider.enable_daily = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_enable_daily", True, ) if hasattr(curTorrentProvider, "enable_backlog"): curTorrentProvider.enable_backlog = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_enable_backlog", curTorrentProvider.supports_backlog, ) if hasattr(curTorrentProvider, "cat"): curTorrentProvider.cat = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_cat", 0, ) if hasattr(curTorrentProvider, "subtitle"): curTorrentProvider.subtitle = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_subtitle", ) if hasattr(curTorrentProvider, "cookies"): curTorrentProvider.cookies = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_cookies", censor_log=True, ) for curNzbProvider in [ curProvider for curProvider in providers.sortedProviderList() if curProvider.provider_type == GenericProvider.NZB ]: curNzbProvider.enabled = check_setting_bool( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() ) if hasattr(curNzbProvider, "api_key"): curNzbProvider.api_key = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_api_key", censor_log=True, ) if hasattr(curNzbProvider, "username"): curNzbProvider.username = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_username", censor_log=True, ) if hasattr(curNzbProvider, "search_mode"): curNzbProvider.search_mode = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_search_mode", "eponly", ) if hasattr(curNzbProvider, "search_fallback"): curNzbProvider.search_fallback = check_setting_bool( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_search_fallback", ) if hasattr(curNzbProvider, "enable_daily"): curNzbProvider.enable_daily = check_setting_bool( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_enable_daily", True, ) if hasattr(curNzbProvider, "enable_backlog"): curNzbProvider.enable_backlog = check_setting_bool( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_enable_backlog", curNzbProvider.supports_backlog, ) providers.check_enabled_providers() if not ek(os.path.isfile, CONFIG_FILE): logger.log( "Unable to find '" + CONFIG_FILE + "', all settings will be default!", logger.DEBUG, ) save_config() # initialize the main SB database main_db_con = db.DBConnection() db.upgradeDatabase(main_db_con, mainDB.InitialSchema) # initialize the cache database cache_db_con = db.DBConnection("cache.db") db.upgradeDatabase(cache_db_con, cache_db.InitialSchema) # initialize the failed downloads database failed_db_con = db.DBConnection("failed.db") db.upgradeDatabase(failed_db_con, failed_db.InitialSchema) # fix up any db problems main_db_con = db.DBConnection() db.sanityCheckDatabase(main_db_con, mainDB.MainSanityCheck) # migrate the config if it needs it migrator = ConfigMigrator(CFG) migrator.migrate_config() # initialize metadata_providers metadata_provider_dict = metadata.get_metadata_generator_dict() for cur_metadata_tuple in [ (METADATA_KODI, metadata.kodi), (METADATA_KODI_12PLUS, metadata.kodi_12plus), (METADATA_MEDIABROWSER, metadata.mediabrowser), (METADATA_PS3, metadata.ps3), (METADATA_WDTV, metadata.wdtv), (METADATA_TIVO, metadata.tivo), (METADATA_MEDE8ER, metadata.mede8er), ]: (cur_metadata_config, cur_metadata_class) = cur_metadata_tuple tmp_provider = cur_metadata_class.metadata_class() tmp_provider.set_config(cur_metadata_config) metadata_provider_dict[tmp_provider.name] = tmp_provider # initialize schedulers # updaters versionCheckScheduler = scheduler.Scheduler( versionChecker.CheckVersion(), cycleTime=datetime.timedelta(hours=UPDATE_FREQUENCY), threadName="CHECKVERSION", silent=False, ) showQueueScheduler = scheduler.Scheduler( show_queue.ShowQueue(), cycleTime=datetime.timedelta(seconds=5), threadName="SHOWQUEUE", ) showUpdateScheduler = scheduler.Scheduler( showUpdater.ShowUpdater(), run_delay=datetime.timedelta(seconds=20), cycleTime=datetime.timedelta(hours=1), start_time=datetime.time(hour=SHOWUPDATE_HOUR), threadName="SHOWUPDATER", ) # searchers searchQueueScheduler = scheduler.Scheduler( search_queue.SearchQueue(), run_delay=datetime.timedelta(seconds=10), cycleTime=datetime.timedelta(seconds=5), threadName="SEARCHQUEUE", ) dailySearchScheduler = scheduler.Scheduler( dailysearcher.DailySearcher(), run_delay=datetime.timedelta(minutes=10), cycleTime=datetime.timedelta(minutes=DAILYSEARCH_FREQUENCY), threadName="DAILYSEARCHER", ) update_interval = datetime.timedelta(minutes=BACKLOG_FREQUENCY) backlogSearchScheduler = searchBacklog.BacklogSearchScheduler( searchBacklog.BacklogSearcher(), cycleTime=update_interval, threadName="BACKLOG", run_delay=update_interval, ) search_intervals = { "15m": 15, "45m": 45, "90m": 90, "4h": 4 * 60, "daily": 24 * 60, } if CHECK_PROPERS_INTERVAL in search_intervals: update_interval = datetime.timedelta( minutes=search_intervals[CHECK_PROPERS_INTERVAL] ) run_at = None else: update_interval = datetime.timedelta(hours=1) run_at = datetime.time(hour=1) # 1 AM properFinderScheduler = scheduler.Scheduler( properFinder.ProperFinder(), cycleTime=update_interval, threadName="FINDPROPERS", start_time=run_at, run_delay=update_interval, silent=not DOWNLOAD_PROPERS, ) # processors postProcessorTaskScheduler = scheduler.Scheduler( post_processing_queue.ProcessingQueue(), run_delay=datetime.timedelta(seconds=5), cycleTime=datetime.timedelta(seconds=5), threadName="POSTPROCESSOR", ) autoPostProcessorScheduler = scheduler.Scheduler( auto_postprocessor.PostProcessor(), run_delay=datetime.timedelta(minutes=5), cycleTime=datetime.timedelta(minutes=AUTOPOSTPROCESSOR_FREQUENCY), threadName="POSTPROCESSOR", silent=not PROCESS_AUTOMATICALLY, ) traktCheckerScheduler = scheduler.Scheduler( traktChecker.TraktChecker(), run_delay=datetime.timedelta(minutes=5), cycleTime=datetime.timedelta(hours=1), threadName="TRAKTCHECKER", silent=not USE_TRAKT, ) subtitlesFinderScheduler = scheduler.Scheduler( subtitles.SubtitlesFinder(), run_delay=datetime.timedelta(minutes=10), cycleTime=datetime.timedelta(hours=SUBTITLES_FINDER_FREQUENCY), threadName="FINDSUBTITLES", silent=not USE_SUBTITLES, ) __INITIALIZED__["0"] = True return True
def initialize(consoleLogging=True): # pylint: disable=too-many-locals, too-many-branches, too-many-statements with INIT_LOCK: # pylint: disable=global-statement global \ BRANCH, \ GIT_RESET, \ GIT_REMOTE, \ GIT_REMOTE_URL, \ CUR_COMMIT_HASH, \ CUR_COMMIT_BRANCH, \ ACTUAL_LOG_DIR, \ LOG_DIR, \ LOG_NR, \ LOG_SIZE, \ WEB_PORT, \ WEB_LOG, \ ENCRYPTION_VERSION, \ ENCRYPTION_SECRET, \ WEB_ROOT, \ WEB_USERNAME, \ WEB_PASSWORD, \ WEB_HOST, \ WEB_IPV6, \ WEB_COOKIE_SECRET, \ WEB_USE_GZIP, \ API_KEY, \ ENABLE_HTTPS, \ HTTPS_CERT, \ HTTPS_KEY, \ HANDLE_REVERSE_PROXY, \ USE_NZBS, \ USE_TORRENTS, \ NZB_METHOD, \ NZB_DIR, \ DOWNLOAD_PROPERS, \ RANDOMIZE_PROVIDERS, \ CHECK_PROPERS_INTERVAL, \ ALLOW_HIGH_PRIORITY, \ SAB_FORCED, \ TORRENT_METHOD, \ NOTIFY_ON_LOGIN, \ SAB_USERNAME, \ SAB_PASSWORD, \ SAB_APIKEY, \ SAB_CATEGORY, \ SAB_CATEGORY_BACKLOG, \ SAB_CATEGORY_ANIME, \ SAB_CATEGORY_ANIME_BACKLOG, \ SAB_HOST, \ NZBGET_USERNAME, \ NZBGET_PASSWORD, \ NZBGET_CATEGORY, \ NZBGET_CATEGORY_BACKLOG, \ NZBGET_CATEGORY_ANIME, \ NZBGET_CATEGORY_ANIME_BACKLOG, \ NZBGET_PRIORITY, \ NZBGET_HOST, \ NZBGET_USE_HTTPS, \ backlogSearchScheduler, \ TORRENT_USERNAME, \ TORRENT_PASSWORD, \ TORRENT_HOST, \ TORRENT_PATH, \ TORRENT_SEED_TIME, \ TORRENT_PAUSED, \ TORRENT_HIGH_BANDWIDTH, \ TORRENT_LABEL, \ TORRENT_LABEL_ANIME, \ TORRENT_VERIFY_CERT, \ TORRENT_RPCURL, \ TORRENT_AUTH_TYPE, \ USE_KODI, \ KODI_ALWAYS_ON, \ KODI_NOTIFY_ONSNATCH, \ KODI_NOTIFY_ONDOWNLOAD, \ KODI_NOTIFY_ONSUBTITLEDOWNLOAD, \ KODI_UPDATE_FULL, \ KODI_UPDATE_ONLYFIRST, \ KODI_UPDATE_LIBRARY, \ KODI_HOST, \ KODI_USERNAME, \ KODI_PASSWORD, \ BACKLOG_FREQUENCY, \ USE_TRAKT, \ TRAKT_USERNAME, \ TRAKT_ACCESS_TOKEN, \ TRAKT_REFRESH_TOKEN, \ TRAKT_REMOVE_WATCHLIST, \ TRAKT_SYNC_WATCHLIST, \ TRAKT_REMOVE_SHOW_FROM_SICKRAGE, \ TRAKT_METHOD_ADD, \ TRAKT_START_PAUSED, \ traktCheckerScheduler, \ TRAKT_USE_RECOMMENDED, \ TRAKT_SYNC, \ TRAKT_SYNC_REMOVE, \ TRAKT_DEFAULT_INDEXER, \ TRAKT_REMOVE_SERIESLIST, \ TRAKT_TIMEOUT, \ TRAKT_BLACKLIST_NAME, \ USE_PLEX_SERVER, \ PLEX_NOTIFY_ONSNATCH, \ PLEX_NOTIFY_ONDOWNLOAD, \ PLEX_NOTIFY_ONSUBTITLEDOWNLOAD, \ PLEX_UPDATE_LIBRARY, \ USE_PLEX_CLIENT, \ PLEX_CLIENT_USERNAME, \ PLEX_CLIENT_PASSWORD, \ PLEX_SERVER_HOST, \ PLEX_SERVER_TOKEN, \ PLEX_CLIENT_HOST, \ PLEX_SERVER_USERNAME, \ PLEX_SERVER_PASSWORD, \ PLEX_SERVER_HTTPS, \ MIN_BACKLOG_FREQUENCY, \ SKIP_REMOVED_FILES, \ ALLOWED_EXTENSIONS, \ USE_EMBY, \ EMBY_HOST, \ EMBY_APIKEY, \ SITE_MESSAGES, \ showUpdateScheduler, \ INDEXER_DEFAULT_LANGUAGE, \ EP_DEFAULT_DELETED_STATUS, \ LAUNCH_BROWSER, \ TRASH_REMOVE_SHOW, \ TRASH_ROTATE_LOGS, \ SORT_ARTICLE, \ NEWZNAB_DATA, \ NZBS, \ NZBS_UID, \ NZBS_HASH, \ INDEXER_DEFAULT, \ INDEXER_TIMEOUT, \ USENET_RETENTION, \ TORRENT_DIR, \ QUALITY_DEFAULT, \ SEASON_FOLDERS_DEFAULT, \ SUBTITLES_DEFAULT, \ STATUS_DEFAULT, \ STATUS_DEFAULT_AFTER, \ GROWL_NOTIFY_ONSNATCH, \ GROWL_NOTIFY_ONDOWNLOAD, \ GROWL_NOTIFY_ONSUBTITLEDOWNLOAD, \ TWITTER_NOTIFY_ONSNATCH, \ TWITTER_NOTIFY_ONDOWNLOAD, \ TWITTER_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_FREEMOBILE, \ FREEMOBILE_ID, \ FREEMOBILE_APIKEY, \ FREEMOBILE_NOTIFY_ONSNATCH, \ FREEMOBILE_NOTIFY_ONDOWNLOAD, \ FREEMOBILE_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_TELEGRAM, \ TELEGRAM_ID, \ TELEGRAM_APIKEY, \ TELEGRAM_NOTIFY_ONSNATCH, \ TELEGRAM_NOTIFY_ONDOWNLOAD, \ TELEGRAM_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_JOIN, \ JOIN_ID, \ JOIN_NOTIFY_ONSNATCH, \ JOIN_NOTIFY_ONDOWNLOAD, \ JOIN_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_GROWL, \ GROWL_HOST, \ GROWL_PASSWORD, \ USE_PROWL, \ PROWL_NOTIFY_ONSNATCH, \ PROWL_NOTIFY_ONDOWNLOAD, \ PROWL_NOTIFY_ONSUBTITLEDOWNLOAD, \ PROWL_API, \ PROWL_PRIORITY, \ PROWL_MESSAGE_TITLE, \ USE_PYTIVO, \ PYTIVO_NOTIFY_ONSNATCH, \ PYTIVO_NOTIFY_ONDOWNLOAD, \ PYTIVO_NOTIFY_ONSUBTITLEDOWNLOAD, \ PYTIVO_UPDATE_LIBRARY, \ PYTIVO_HOST, \ PYTIVO_SHARE_NAME, \ PYTIVO_TIVO_NAME, \ USE_NMA, \ NMA_NOTIFY_ONSNATCH, \ NMA_NOTIFY_ONDOWNLOAD, \ NMA_NOTIFY_ONSUBTITLEDOWNLOAD, \ NMA_API, \ NMA_PRIORITY, \ USE_PUSHALOT, \ PUSHALOT_NOTIFY_ONSNATCH, \ PUSHALOT_NOTIFY_ONDOWNLOAD, \ PUSHALOT_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHALOT_AUTHORIZATIONTOKEN, \ USE_PUSHBULLET, \ PUSHBULLET_NOTIFY_ONSNATCH, \ PUSHBULLET_NOTIFY_ONDOWNLOAD, \ PUSHBULLET_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHBULLET_API, \ PUSHBULLET_DEVICE, \ PUSHBULLET_CHANNEL, \ versionCheckScheduler, \ VERSION_NOTIFY, \ AUTO_UPDATE, \ NOTIFY_ON_UPDATE, \ PROCESS_AUTOMATICALLY, \ NO_DELETE, \ USE_ICACLS, \ UNPACK, \ CPU_PRESET, \ UNPACK_DIR, \ UNRAR_TOOL, \ ALT_UNRAR_TOOL, \ KEEP_PROCESSED_DIR, \ PROCESS_METHOD, \ PROCESSOR_FOLLOW_SYMLINKS, \ DELRARCONTENTS, \ TV_DOWNLOAD_DIR, \ UPDATE_FREQUENCY, \ showQueueScheduler, \ searchQueueScheduler, \ postProcessorTaskScheduler, \ ROOT_DIRS, \ CACHE_DIR, \ ACTUAL_CACHE_DIR, \ TIMEZONE_DISPLAY, \ NAMING_PATTERN, \ NAMING_MULTI_EP, \ NAMING_ANIME_MULTI_EP, \ NAMING_FORCE_FOLDERS, \ NAMING_ABD_PATTERN, \ NAMING_CUSTOM_ABD, \ NAMING_SPORTS_PATTERN, \ NAMING_CUSTOM_SPORTS, \ NAMING_ANIME_PATTERN, \ NAMING_CUSTOM_ANIME, \ NAMING_STRIP_YEAR, \ RENAME_EPISODES, \ AIRDATE_EPISODES, \ FILE_TIMESTAMP_TIMEZONE, \ properFinderScheduler, \ PROVIDER_ORDER, \ autoPostProcessorScheduler, \ providerList, \ newznabProviderList, \ torrentRssProviderList, \ EXTRA_SCRIPTS, \ USE_TWITTER, \ TWITTER_USERNAME, \ TWITTER_PASSWORD, \ TWITTER_PREFIX, \ DAILYSEARCH_FREQUENCY, \ TWITTER_DMTO, \ TWITTER_USEDM, \ USE_TWILIO, \ TWILIO_NOTIFY_ONSNATCH, \ TWILIO_NOTIFY_ONDOWNLOAD, \ TWILIO_NOTIFY_ONSUBTITLEDOWNLOAD, \ TWILIO_PHONE_SID, \ TWILIO_ACCOUNT_SID, \ TWILIO_AUTH_TOKEN, \ TWILIO_TO_NUMBER, \ USE_BOXCAR2, \ BOXCAR2_ACCESSTOKEN, \ BOXCAR2_NOTIFY_ONDOWNLOAD, \ BOXCAR2_NOTIFY_ONSUBTITLEDOWNLOAD, \ BOXCAR2_NOTIFY_ONSNATCH, \ USE_PUSHOVER, \ PUSHOVER_USERKEY, \ PUSHOVER_APIKEY, \ PUSHOVER_DEVICE, \ PUSHOVER_NOTIFY_ONDOWNLOAD, \ PUSHOVER_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHOVER_NOTIFY_ONSNATCH, \ PUSHOVER_SOUND, \ PUSHOVER_PRIORITY, \ USE_LIBNOTIFY, \ LIBNOTIFY_NOTIFY_ONSNATCH, \ LIBNOTIFY_NOTIFY_ONDOWNLOAD, \ LIBNOTIFY_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_NMJ, \ NMJ_HOST, \ NMJ_DATABASE, \ NMJ_MOUNT, \ USE_NMJv2, \ NMJv2_HOST, \ NMJv2_DATABASE, \ NMJv2_DBLOC, \ USE_SYNOINDEX, \ USE_SYNOLOGYNOTIFIER, \ SYNOLOGYNOTIFIER_NOTIFY_ONSNATCH, \ SYNOLOGYNOTIFIER_NOTIFY_ONDOWNLOAD, \ SYNOLOGYNOTIFIER_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_EMAIL, \ EMAIL_HOST, \ EMAIL_PORT, \ EMAIL_TLS, \ EMAIL_USER, \ EMAIL_PASSWORD, \ EMAIL_FROM, \ EMAIL_NOTIFY_ONSNATCH, \ EMAIL_NOTIFY_ONDOWNLOAD, \ EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD, \ EMAIL_LIST, \ EMAIL_SUBJECT, \ USE_LISTVIEW, \ METADATA_KODI, \ METADATA_KODI_12PLUS, \ METADATA_MEDIABROWSER, \ METADATA_PS3, \ metadata_provider_dict, \ NEWZBIN, \ NEWZBIN_USERNAME, \ NEWZBIN_PASSWORD, \ GIT_PATH, \ MOVE_ASSOCIATED_FILES, \ DELETE_NON_ASSOCIATED_FILES, \ SYNC_FILES, \ POSTPONE_IF_SYNC_FILES, \ dailySearchScheduler, \ NFO_RENAME, \ GUI_NAME, \ HOME_LAYOUT, \ HISTORY_LAYOUT, \ DISPLAY_SHOW_SPECIALS, \ COMING_EPS_LAYOUT, \ COMING_EPS_SORT, \ COMING_EPS_DISPLAY_PAUSED, \ COMING_EPS_MISSED_RANGE, \ FUZZY_DATING, \ TRIM_ZERO, \ DATE_PRESET, \ TIME_PRESET, \ TIME_PRESET_W_SECONDS, \ THEME_NAME, \ POSTER_SORTBY, \ POSTER_SORTDIR, \ HISTORY_LIMIT, \ CREATE_MISSING_SHOW_DIRS, \ ADD_SHOWS_WO_DIR, \ USE_FREE_SPACE_CHECK, \ METADATA_WDTV, \ METADATA_TIVO, \ METADATA_MEDE8ER, \ IGNORE_WORDS, \ TRACKERS_LIST, \ IGNORED_SUBS_LIST, \ REQUIRE_WORDS, \ CALENDAR_UNPROTECTED, \ CALENDAR_ICONS, \ NO_RESTART, \ USE_SUBTITLES, \ SUBTITLES_INCLUDE_SPECIALS, \ SUBTITLES_LANGUAGES, \ SUBTITLES_DIR, \ SUBTITLES_SERVICES_LIST, \ SUBTITLES_SERVICES_ENABLED, \ SUBTITLES_HISTORY, \ SUBTITLES_FINDER_FREQUENCY, \ SUBTITLES_MULTI, \ SUBTITLES_KEEP_ONLY_WANTED, \ EMBEDDED_SUBTITLES_ALL, \ SUBTITLES_EXTRA_SCRIPTS, \ SUBTITLES_PERFECT_MATCH, \ subtitlesFinderScheduler, \ SUBTITLES_HEARING_IMPAIRED, \ ADDIC7ED_USER, \ ADDIC7ED_PASS, \ ITASA_USER, \ ITASA_PASS, \ LEGENDASTV_USER, \ LEGENDASTV_PASS, \ OPENSUBTITLES_USER, \ OPENSUBTITLES_PASS, \ USE_FAILED_DOWNLOADS, \ DELETE_FAILED, \ ANON_REDIRECT, \ LOCALHOST_IP, \ DEBUG, \ DBDEBUG, \ DEFAULT_PAGE, \ PROXY_SETTING, \ PROXY_INDEXERS, \ AUTOPOSTPROCESSOR_FREQUENCY, \ SHOWUPDATE_HOUR, \ ANIME_DEFAULT, \ NAMING_ANIME, \ ANIMESUPPORT, \ USE_ANIDB, \ ANIDB_USERNAME, \ ANIDB_PASSWORD, \ ANIDB_USE_MYLIST, \ ANIME_SPLIT_HOME, \ ANIME_SPLIT_HOME_IN_TABS, \ SCENE_DEFAULT, \ DOWNLOAD_URL, \ BACKLOG_DAYS, \ GIT_AUTH_TYPE, \ GIT_USERNAME, \ GIT_PASSWORD, \ GIT_TOKEN, \ DEVELOPER, \ DISPLAY_ALL_SEASONS, \ SSL_VERIFY, \ NEWS_LAST_READ, \ NEWS_LATEST, \ SOCKET_TIMEOUT, \ SYNOLOGY_DSM_HOST, \ SYNOLOGY_DSM_USERNAME, \ SYNOLOGY_DSM_PASSWORD, \ SYNOLOGY_DSM_PATH, \ GUI_LANG, \ SICKRAGE_BACKGROUND, \ SICKRAGE_BACKGROUND_PATH, \ FANART_BACKGROUND, \ FANART_BACKGROUND_OPACITY, \ USE_SLACK, \ SLACK_NOTIFY_SNATCH, \ SLACK_NOTIFY_DOWNLOAD, \ SLACK_WEBHOOK, \ USE_DISCORD, \ DISCORD_NOTIFY_SNATCH, \ DISCORD_NOTIFY_DOWNLOAD, \ DISCORD_WEBHOOK if __INITIALIZED__: return False check_section(CFG, "General") check_section(CFG, "Blackhole") check_section(CFG, "Newzbin") check_section(CFG, "SABnzbd") check_section(CFG, "NZBget") check_section(CFG, "KODI") check_section(CFG, "PLEX") check_section(CFG, "Emby") check_section(CFG, "Growl") check_section(CFG, "Prowl") check_section(CFG, "Twitter") check_section(CFG, "Boxcar2") check_section(CFG, "NMJ") check_section(CFG, "NMJv2") check_section(CFG, "Synology") check_section(CFG, "SynologyNotifier") check_section(CFG, "pyTivo") check_section(CFG, "NMA") check_section(CFG, "Pushalot") check_section(CFG, "Pushbullet") check_section(CFG, "Subtitles") check_section(CFG, "pyTivo") check_section(CFG, "Slack") check_section(CFG, "Discord") # Need to be before any passwords ENCRYPTION_VERSION = check_setting_int(CFG, "General", "encryption_version") ENCRYPTION_SECRET = check_setting_str( CFG, "General", "encryption_secret", helpers.generateCookieSecret(), censor_log=True, ) # git login info GIT_AUTH_TYPE = check_setting_int(CFG, "General", "git_auth_type") GIT_USERNAME = check_setting_str(CFG, "General", "git_username") GIT_PASSWORD = check_setting_str( CFG, "General", "git_password", censor_log=True ) GIT_TOKEN = check_setting_str( CFG, "General", "git_token_password", censor_log=True ) # encryption needed DEVELOPER = check_setting_bool(CFG, "General", "developer") # debugging DEBUG = check_setting_bool(CFG, "General", "debug") DBDEBUG = check_setting_bool(CFG, "General", "dbdebug") DEFAULT_PAGE = check_setting_str(CFG, "General", "default_page", "home") if DEFAULT_PAGE not in ("home", "schedule", "history", "news", "IRC"): DEFAULT_PAGE = "home" ACTUAL_LOG_DIR = check_setting_str(CFG, "General", "log_dir", "Logs") LOG_DIR = ek(os.path.normpath, ek(os.path.join, DATA_DIR, ACTUAL_LOG_DIR)) LOG_NR = check_setting_int( CFG, "General", "log_nr", 5 ) # Default to 5 backup file (sickrage.log.x) LOG_SIZE = check_setting_float( CFG, "General", "log_size", 10.0 ) # Default to max 10MB per logfile if LOG_SIZE > 100: LOG_SIZE = 10.0 fileLogging = True if not helpers.makeDir(LOG_DIR): sys.stderr.write("!!! No log folder, logging to screen only!\n") fileLogging = False # init logging logger.init_logging( console_logging=consoleLogging, file_logging=fileLogging, debug_logging=DEBUG, database_logging=DBDEBUG, ) # Initializes sickbeard.gh setup_github() # git reset on update GIT_RESET = check_setting_bool(CFG, "General", "git_reset", True) # current git branch BRANCH = check_setting_str(CFG, "General", "branch") # git_remote GIT_REMOTE = check_setting_str(CFG, "General", "git_remote", "origin") GIT_REMOTE_URL = check_setting_str( CFG, "General", "git_remote_url", "https://github.com/{0}/{1}.git".format(GIT_ORG, GIT_REPO), ) if "sickragetv" in GIT_REMOTE_URL.lower(): GIT_REMOTE_URL = "https://github.com/SickRage/SickRage.git" # current commit hash CUR_COMMIT_HASH = check_setting_str(CFG, "General", "cur_commit_hash") # current commit branch CUR_COMMIT_BRANCH = check_setting_str(CFG, "General", "cur_commit_branch") ACTUAL_CACHE_DIR = check_setting_str(CFG, "General", "cache_dir", "cache") # fix bad configs due to buggy code if ACTUAL_CACHE_DIR == "None": ACTUAL_CACHE_DIR = "cache" # unless they specify, put the cache dir inside the data dir if not ek(os.path.isabs, ACTUAL_CACHE_DIR): CACHE_DIR = ek(os.path.join, DATA_DIR, ACTUAL_CACHE_DIR) else: CACHE_DIR = ACTUAL_CACHE_DIR if not helpers.makeDir(CACHE_DIR): logger.log( "!!! Creating local cache dir failed, using system default", logger.ERROR, ) CACHE_DIR = None # Check if we need to perform a restore of the cache folder try: restoreDir = ek(os.path.join, DATA_DIR, "restore") if ek(os.path.exists, restoreDir) and ek( os.path.exists, ek(os.path.join, restoreDir, "cache") ): def restoreCache(srcDir, dstDir): def path_leaf(path): head, tail = ek(os.path.split, path) return tail or ek(os.path.basename, head) try: if ek(os.path.isdir, dstDir): bakFilename = "{0}-{1}".format( path_leaf(dstDir), datetime.datetime.strftime( datetime.datetime.now(), "%Y%m%d_%H%M%S" ), ) shutil.move( dstDir, ek( os.path.join, ek(os.path.dirname, dstDir), bakFilename, ), ) shutil.move(srcDir, dstDir) logger.log("Restore: restoring cache successful", logger.INFO) except Exception as e: logger.log( "Restore: restoring cache failed: {0}".format(e), logger.ERROR, ) restoreCache(ek(os.path.join, restoreDir, "cache"), CACHE_DIR) except Exception as e: logger.log( "Restore: restoring cache failed: {0}".format(ex(e)), logger.ERROR ) finally: if ek(os.path.exists, ek(os.path.join, DATA_DIR, "restore")): try: shutil.rmtree(ek(os.path.join, DATA_DIR, "restore")) except Exception as e: logger.log( "Restore: Unable to remove the restore directory: {0}".format( ex(e) ), logger.ERROR, ) for cleanupDir in ["mako", "sessions", "indexers", "rss"]: try: shutil.rmtree(ek(os.path.join, CACHE_DIR, cleanupDir)) except Exception as e: if cleanupDir not in ["rss", "sessions", "indexers"]: logger.log( "Restore: Unable to remove the cache/{0} directory: {1}".format( cleanupDir, ex(e) ), logger.WARNING, ) THEME_NAME = check_setting_str(CFG, "GUI", "theme_name", "dark") SICKRAGE_BACKGROUND = check_setting_bool(CFG, "GUI", "sickrage_background") SICKRAGE_BACKGROUND_PATH = check_setting_str( CFG, "GUI", "sickrage_background_path" ) FANART_BACKGROUND = check_setting_bool(CFG, "GUI", "fanart_background", True) FANART_BACKGROUND_OPACITY = check_setting_float( CFG, "GUI", "fanart_background_opacity", 0.4 ) GUI_NAME = check_setting_str(CFG, "GUI", "gui_name", "slick") GUI_LANG = check_setting_str(CFG, "GUI", "language") if GUI_LANG: gettext.translation( "messages", LOCALE_DIR, languages=[GUI_LANG], codeset="UTF-8" ).install(unicode=1) else: gettext.install("messages", LOCALE_DIR, unicode=1, codeset="UTF-8") load_gettext_translations(LOCALE_DIR, "messages") SOCKET_TIMEOUT = check_setting_int(CFG, "General", "socket_timeout", 30) socket.setdefaulttimeout(SOCKET_TIMEOUT) try: WEB_PORT = check_setting_int(CFG, "General", "web_port", 8081) except Exception: WEB_PORT = 8081 if 21 > WEB_PORT > 65535: WEB_PORT = 8081 WEB_HOST = check_setting_str(CFG, "General", "web_host", "0.0.0.0") WEB_IPV6 = check_setting_bool(CFG, "General", "web_ipv6") WEB_ROOT = check_setting_str(CFG, "General", "web_root").rstrip("/") WEB_LOG = check_setting_bool(CFG, "General", "web_log") WEB_USERNAME = check_setting_str( CFG, "General", "web_username", censor_log=True ) WEB_PASSWORD = check_setting_str( CFG, "General", "web_password", censor_log=True ) WEB_COOKIE_SECRET = check_setting_str( CFG, "General", "web_cookie_secret", helpers.generateCookieSecret(), censor_log=True, ) if not WEB_COOKIE_SECRET: WEB_COOKIE_SECRET = helpers.generateCookieSecret() WEB_USE_GZIP = check_setting_bool(CFG, "General", "web_use_gzip", True) SSL_VERIFY = check_setting_bool(CFG, "General", "ssl_verify", True) INDEXER_DEFAULT_LANGUAGE = check_setting_str( CFG, "General", "indexerDefaultLang", "en" ) EP_DEFAULT_DELETED_STATUS = check_setting_int( CFG, "General", "ep_default_deleted_status", 6 ) LAUNCH_BROWSER = check_setting_bool(CFG, "General", "launch_browser", True) DOWNLOAD_URL = check_setting_str(CFG, "General", "download_url") LOCALHOST_IP = check_setting_str(CFG, "General", "localhost_ip") CPU_PRESET = check_setting_str(CFG, "General", "cpu_preset", "NORMAL") ANON_REDIRECT = check_setting_str( CFG, "General", "anon_redirect", "http://dereferer.org/?" ) PROXY_SETTING = check_setting_str(CFG, "General", "proxy_setting") PROXY_INDEXERS = check_setting_int(CFG, "General", "proxy_indexers", 1) # attempt to help prevent users from breaking links by using a bad url if not ANON_REDIRECT.endswith("?"): ANON_REDIRECT = "" TRASH_REMOVE_SHOW = check_setting_bool(CFG, "General", "trash_remove_show") TRASH_ROTATE_LOGS = check_setting_bool(CFG, "General", "trash_rotate_logs") SORT_ARTICLE = check_setting_bool(CFG, "General", "sort_article") API_KEY = check_setting_str(CFG, "General", "api_key", censor_log=True) ENABLE_HTTPS = check_setting_bool(CFG, "General", "enable_https") NOTIFY_ON_LOGIN = check_setting_bool(CFG, "General", "notify_on_login") HTTPS_CERT = check_setting_str(CFG, "General", "https_cert", "server.crt") HTTPS_KEY = check_setting_str(CFG, "General", "https_key", "server.key") HANDLE_REVERSE_PROXY = check_setting_bool( CFG, "General", "handle_reverse_proxy" ) ROOT_DIRS = check_setting_str(CFG, "General", "root_dirs") if not re.match(r"\d+\|[^|]+(?:\|[^|]+)*", ROOT_DIRS): ROOT_DIRS = "" QUALITY_DEFAULT = check_setting_int(CFG, "General", "quality_default", SD) STATUS_DEFAULT = check_setting_int(CFG, "General", "status_default", SKIPPED) STATUS_DEFAULT_AFTER = check_setting_int( CFG, "General", "status_default_after", WANTED ) VERSION_NOTIFY = check_setting_bool(CFG, "General", "version_notify", True) AUTO_UPDATE = check_setting_bool(CFG, "General", "auto_update") NOTIFY_ON_UPDATE = check_setting_bool(CFG, "General", "notify_on_update", True) SEASON_FOLDERS_DEFAULT = check_setting_bool( CFG, "General", "season_folders_default", True ) INDEXER_DEFAULT = check_setting_int(CFG, "General", "indexer_default") INDEXER_TIMEOUT = check_setting_int(CFG, "General", "indexer_timeout", 20) ANIME_DEFAULT = check_setting_bool(CFG, "General", "anime_default") SCENE_DEFAULT = check_setting_bool(CFG, "General", "scene_default") PROVIDER_ORDER = check_setting_str(CFG, "General", "provider_order").split() NAMING_PATTERN = check_setting_str( CFG, "General", "naming_pattern", "Season %0S/%SN - S%0SE%0E - %EN" ) NAMING_ABD_PATTERN = check_setting_str( CFG, "General", "naming_abd_pattern", "%SN - %A.D - %EN" ) NAMING_CUSTOM_ABD = check_setting_bool(CFG, "General", "naming_custom_abd") NAMING_SPORTS_PATTERN = check_setting_str( CFG, "General", "naming_sports_pattern", "%SN - %A-D - %EN" ) NAMING_ANIME_PATTERN = check_setting_str( CFG, "General", "naming_anime_pattern", "Season %0S/%SN - S%0SE%0E - %EN" ) NAMING_ANIME = check_setting_int(CFG, "General", "naming_anime", 3) NAMING_CUSTOM_SPORTS = check_setting_bool( CFG, "General", "naming_custom_sports" ) NAMING_CUSTOM_ANIME = check_setting_bool(CFG, "General", "naming_custom_anime") NAMING_MULTI_EP = check_setting_int(CFG, "General", "naming_multi_ep", 1) NAMING_ANIME_MULTI_EP = check_setting_int( CFG, "General", "naming_anime_multi_ep", 1 ) NAMING_FORCE_FOLDERS = naming.check_force_season_folders() NAMING_STRIP_YEAR = check_setting_bool(CFG, "General", "naming_strip_year") USE_NZBS = check_setting_bool(CFG, "General", "use_nzbs") USE_TORRENTS = check_setting_bool(CFG, "General", "use_torrents", True) NZB_METHOD = check_setting_str(CFG, "General", "nzb_method", "blackhole") if NZB_METHOD not in ("blackhole", "sabnzbd", "nzbget", "download_station"): NZB_METHOD = "blackhole" TORRENT_METHOD = check_setting_str( CFG, "General", "torrent_method", "blackhole" ) if TORRENT_METHOD not in ( "blackhole", "utorrent", "transmission", "deluge", "deluged", "download_station", "rtorrent", "qbittorrent", "mlnet", "putio", ): TORRENT_METHOD = "blackhole" DOWNLOAD_PROPERS = check_setting_bool(CFG, "General", "download_propers", True) CHECK_PROPERS_INTERVAL = check_setting_str( CFG, "General", "check_propers_interval" ) if CHECK_PROPERS_INTERVAL not in ("15m", "45m", "90m", "4h", "daily"): CHECK_PROPERS_INTERVAL = "daily" RANDOMIZE_PROVIDERS = check_setting_bool(CFG, "General", "randomize_providers") ALLOW_HIGH_PRIORITY = check_setting_bool( CFG, "General", "allow_high_priority", True ) SKIP_REMOVED_FILES = check_setting_bool(CFG, "General", "skip_removed_files") ALLOWED_EXTENSIONS = check_setting_str( CFG, "General", "allowed_extensions", ALLOWED_EXTENSIONS ) USENET_RETENTION = check_setting_int(CFG, "General", "usenet_retention", 500) AUTOPOSTPROCESSOR_FREQUENCY = check_setting_int( CFG, "General", "autopostprocessor_frequency", DEFAULT_AUTOPOSTPROCESSOR_FREQUENCY, ) if AUTOPOSTPROCESSOR_FREQUENCY < MIN_AUTOPOSTPROCESSOR_FREQUENCY: AUTOPOSTPROCESSOR_FREQUENCY = MIN_AUTOPOSTPROCESSOR_FREQUENCY DAILYSEARCH_FREQUENCY = check_setting_int( CFG, "General", "dailysearch_frequency", DEFAULT_DAILYSEARCH_FREQUENCY ) if DAILYSEARCH_FREQUENCY < MIN_DAILYSEARCH_FREQUENCY: DAILYSEARCH_FREQUENCY = MIN_DAILYSEARCH_FREQUENCY MIN_BACKLOG_FREQUENCY = get_backlog_cycle_time() BACKLOG_FREQUENCY = check_setting_int( CFG, "General", "backlog_frequency", DEFAULT_BACKLOG_FREQUENCY ) if BACKLOG_FREQUENCY < MIN_BACKLOG_FREQUENCY: BACKLOG_FREQUENCY = MIN_BACKLOG_FREQUENCY UPDATE_FREQUENCY = check_setting_int( CFG, "General", "update_frequency", DEFAULT_UPDATE_FREQUENCY ) if UPDATE_FREQUENCY < MIN_UPDATE_FREQUENCY: UPDATE_FREQUENCY = MIN_UPDATE_FREQUENCY SHOWUPDATE_HOUR = check_setting_int( CFG, "General", "showupdate_hour", DEFAULT_SHOWUPDATE_HOUR ) if SHOWUPDATE_HOUR > 23: SHOWUPDATE_HOUR = 0 elif SHOWUPDATE_HOUR < 0: SHOWUPDATE_HOUR = 0 BACKLOG_DAYS = check_setting_int(CFG, "General", "backlog_days", 7) NEWS_LAST_READ = check_setting_str( CFG, "General", "news_last_read", "1970-01-01" ) NEWS_LATEST = NEWS_LAST_READ NZB_DIR = check_setting_str(CFG, "Blackhole", "nzb_dir") TORRENT_DIR = check_setting_str(CFG, "Blackhole", "torrent_dir") TV_DOWNLOAD_DIR = check_setting_str(CFG, "General", "tv_download_dir") PROCESS_AUTOMATICALLY = check_setting_bool( CFG, "General", "process_automatically" ) NO_DELETE = check_setting_bool(CFG, "General", "no_delete") USE_ICACLS = check_setting_bool(CFG, "General", "use_icacls", True) UNPACK = check_setting_int(CFG, "General", "unpack") UNPACK_DIR = check_setting_str(CFG, "General", "unpack_dir") config.change_unrar_tool( check_setting_str(CFG, "General", "unrar_tool", rarfile.UNRAR_TOOL), check_setting_str(CFG, "General", "alt_unrar_tool", rarfile.ALT_TOOL), ) RENAME_EPISODES = check_setting_bool(CFG, "General", "rename_episodes", True) AIRDATE_EPISODES = check_setting_bool(CFG, "General", "airdate_episodes") FILE_TIMESTAMP_TIMEZONE = check_setting_str( CFG, "General", "file_timestamp_timezone", "network" ) KEEP_PROCESSED_DIR = check_setting_bool( CFG, "General", "keep_processed_dir", True ) PROCESS_METHOD = check_setting_str( CFG, "General", "process_method", "copy" if KEEP_PROCESSED_DIR else "move" ) PROCESSOR_FOLLOW_SYMLINKS = check_setting_bool( CFG, "General", "processor_follow_symlinks" ) DELRARCONTENTS = check_setting_bool(CFG, "General", "del_rar_contents") MOVE_ASSOCIATED_FILES = check_setting_bool( CFG, "General", "move_associated_files" ) DELETE_NON_ASSOCIATED_FILES = check_setting_bool( CFG, "General", "delete_non_associated_files", True ) POSTPONE_IF_SYNC_FILES = check_setting_bool( CFG, "General", "postpone_if_sync_files", True ) SYNC_FILES = check_setting_str(CFG, "General", "sync_files", SYNC_FILES) NFO_RENAME = check_setting_bool(CFG, "General", "nfo_rename", True) CREATE_MISSING_SHOW_DIRS = check_setting_bool( CFG, "General", "create_missing_show_dirs" ) ADD_SHOWS_WO_DIR = check_setting_bool(CFG, "General", "add_shows_wo_dir") USE_FREE_SPACE_CHECK = check_setting_bool( CFG, "General", "use_free_space_check", True ) NZBS = check_setting_bool(CFG, "NZBs", "nzbs") NZBS_UID = check_setting_str(CFG, "NZBs", "nzbs_uid", censor_log=True) NZBS_HASH = check_setting_str(CFG, "NZBs", "nzbs_hash", censor_log=True) NEWZBIN = check_setting_bool(CFG, "Newzbin", "newzbin") NEWZBIN_USERNAME = check_setting_str( CFG, "Newzbin", "newzbin_username", censor_log=True ) NEWZBIN_PASSWORD = check_setting_str( CFG, "Newzbin", "newzbin_password", censor_log=True ) SAB_USERNAME = check_setting_str( CFG, "SABnzbd", "sab_username", censor_log=True ) SAB_PASSWORD = check_setting_str( CFG, "SABnzbd", "sab_password", censor_log=True ) SAB_APIKEY = check_setting_str(CFG, "SABnzbd", "sab_apikey", censor_log=True) SAB_CATEGORY = check_setting_str(CFG, "SABnzbd", "sab_category", "tv") SAB_CATEGORY_BACKLOG = check_setting_str( CFG, "SABnzbd", "sab_category_backlog", SAB_CATEGORY ) SAB_CATEGORY_ANIME = check_setting_str( CFG, "SABnzbd", "sab_category_anime", "anime" ) SAB_CATEGORY_ANIME_BACKLOG = check_setting_str( CFG, "SABnzbd", "sab_category_anime_backlog", SAB_CATEGORY_ANIME ) SAB_HOST = check_setting_str(CFG, "SABnzbd", "sab_host") SAB_FORCED = check_setting_bool(CFG, "SABnzbd", "sab_forced") NZBGET_USERNAME = check_setting_str( CFG, "NZBget", "nzbget_username", "nzbget", censor_log=True ) NZBGET_PASSWORD = check_setting_str( CFG, "NZBget", "nzbget_password", "tegbzn6789", censor_log=True ) NZBGET_CATEGORY = check_setting_str(CFG, "NZBget", "nzbget_category", "tv") NZBGET_CATEGORY_BACKLOG = check_setting_str( CFG, "NZBget", "nzbget_category_backlog", NZBGET_CATEGORY ) NZBGET_CATEGORY_ANIME = check_setting_str( CFG, "NZBget", "nzbget_category_anime", "anime" ) NZBGET_CATEGORY_ANIME_BACKLOG = check_setting_str( CFG, "NZBget", "nzbget_category_anime_backlog", NZBGET_CATEGORY_ANIME ) NZBGET_HOST = check_setting_str(CFG, "NZBget", "nzbget_host") NZBGET_USE_HTTPS = check_setting_bool(CFG, "NZBget", "nzbget_use_https") NZBGET_PRIORITY = check_setting_int(CFG, "NZBget", "nzbget_priority", 100) TORRENT_USERNAME = check_setting_str( CFG, "TORRENT", "torrent_username", censor_log=True ) TORRENT_PASSWORD = check_setting_str( CFG, "TORRENT", "torrent_password", censor_log=True ) TORRENT_HOST = check_setting_str(CFG, "TORRENT", "torrent_host") TORRENT_PATH = check_setting_str(CFG, "TORRENT", "torrent_path") TORRENT_SEED_TIME = check_setting_int(CFG, "TORRENT", "torrent_seed_time") TORRENT_PAUSED = check_setting_bool(CFG, "TORRENT", "torrent_paused") TORRENT_HIGH_BANDWIDTH = check_setting_bool( CFG, "TORRENT", "torrent_high_bandwidth" ) TORRENT_LABEL = check_setting_str(CFG, "TORRENT", "torrent_label") TORRENT_LABEL_ANIME = check_setting_str(CFG, "TORRENT", "torrent_label_anime") TORRENT_VERIFY_CERT = check_setting_bool(CFG, "TORRENT", "torrent_verify_cert") TORRENT_RPCURL = check_setting_str( CFG, "TORRENT", "torrent_rpcurl", "transmission" ) TORRENT_AUTH_TYPE = check_setting_str(CFG, "TORRENT", "torrent_auth_type") SYNOLOGY_DSM_HOST = check_setting_str(CFG, "Synology", "host") SYNOLOGY_DSM_USERNAME = check_setting_str( CFG, "Synology", "username", censor_log=True ) SYNOLOGY_DSM_PASSWORD = check_setting_str( CFG, "Synology", "password", censor_log=True ) SYNOLOGY_DSM_PATH = check_setting_str(CFG, "Synology", "path") USE_KODI = check_setting_bool(CFG, "KODI", "use_kodi") KODI_ALWAYS_ON = check_setting_bool(CFG, "KODI", "kodi_always_on", True) KODI_NOTIFY_ONSNATCH = check_setting_bool(CFG, "KODI", "kodi_notify_onsnatch") KODI_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "KODI", "kodi_notify_ondownload" ) KODI_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "KODI", "kodi_notify_onsubtitledownload" ) KODI_UPDATE_LIBRARY = check_setting_bool(CFG, "KODI", "kodi_update_library") KODI_UPDATE_FULL = check_setting_bool(CFG, "KODI", "kodi_update_full") KODI_UPDATE_ONLYFIRST = check_setting_bool(CFG, "KODI", "kodi_update_onlyfirst") KODI_HOST = check_setting_str(CFG, "KODI", "kodi_host") KODI_USERNAME = check_setting_str(CFG, "KODI", "kodi_username", censor_log=True) KODI_PASSWORD = check_setting_str(CFG, "KODI", "kodi_password", censor_log=True) USE_PLEX_SERVER = check_setting_bool(CFG, "Plex", "use_plex_server") PLEX_NOTIFY_ONSNATCH = check_setting_bool(CFG, "Plex", "plex_notify_onsnatch") PLEX_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Plex", "plex_notify_ondownload" ) PLEX_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Plex", "plex_notify_onsubtitledownload" ) PLEX_UPDATE_LIBRARY = check_setting_bool(CFG, "Plex", "plex_update_library") PLEX_SERVER_HOST = check_setting_str(CFG, "Plex", "plex_server_host") PLEX_SERVER_TOKEN = check_setting_str(CFG, "Plex", "plex_server_token") PLEX_CLIENT_HOST = check_setting_str(CFG, "Plex", "plex_client_host") PLEX_SERVER_USERNAME = check_setting_str( CFG, "Plex", "plex_server_username", censor_log=True ) PLEX_SERVER_PASSWORD = check_setting_str( CFG, "Plex", "plex_server_password", censor_log=True ) USE_PLEX_CLIENT = check_setting_bool(CFG, "Plex", "use_plex_client") PLEX_CLIENT_USERNAME = check_setting_str( CFG, "Plex", "plex_client_username", censor_log=True ) PLEX_CLIENT_PASSWORD = check_setting_str( CFG, "Plex", "plex_client_password", censor_log=True ) PLEX_SERVER_HTTPS = check_setting_bool(CFG, "Plex", "plex_server_https") USE_EMBY = check_setting_bool(CFG, "Emby", "use_emby") EMBY_HOST = check_setting_str(CFG, "Emby", "emby_host") EMBY_APIKEY = check_setting_str(CFG, "Emby", "emby_apikey") USE_GROWL = check_setting_bool(CFG, "Growl", "use_growl") GROWL_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Growl", "growl_notify_onsnatch" ) GROWL_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Growl", "growl_notify_ondownload" ) GROWL_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Growl", "growl_notify_onsubtitledownload" ) GROWL_HOST = check_setting_str(CFG, "Growl", "growl_host") GROWL_PASSWORD = check_setting_str( CFG, "Growl", "growl_password", censor_log=True ) USE_FREEMOBILE = check_setting_bool(CFG, "FreeMobile", "use_freemobile") FREEMOBILE_NOTIFY_ONSNATCH = check_setting_bool( CFG, "FreeMobile", "freemobile_notify_onsnatch" ) FREEMOBILE_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "FreeMobile", "freemobile_notify_ondownload" ) FREEMOBILE_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "FreeMobile", "freemobile_notify_onsubtitledownload" ) FREEMOBILE_ID = check_setting_str(CFG, "FreeMobile", "freemobile_id") FREEMOBILE_APIKEY = check_setting_str(CFG, "FreeMobile", "freemobile_apikey") USE_TELEGRAM = check_setting_bool(CFG, "Telegram", "use_telegram") TELEGRAM_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Telegram", "telegram_notify_onsnatch" ) TELEGRAM_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Telegram", "telegram_notify_ondownload" ) TELEGRAM_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Telegram", "telegram_notify_onsubtitledownload" ) TELEGRAM_ID = check_setting_str(CFG, "Telegram", "telegram_id") TELEGRAM_APIKEY = check_setting_str(CFG, "Telegram", "telegram_apikey") USE_JOIN = check_setting_bool(CFG, "Join", "use_join") JOIN_NOTIFY_ONSNATCH = check_setting_bool(CFG, "Join", "join_notify_onsnatch") JOIN_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Join", "join_notify_ondownload" ) JOIN_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Join", "join_notify_onsubtitledownload" ) JOIN_ID = check_setting_str(CFG, "Join", "join_id") USE_PROWL = check_setting_bool(CFG, "Prowl", "use_prowl") PROWL_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Prowl", "prowl_notify_onsnatch" ) PROWL_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Prowl", "prowl_notify_ondownload" ) PROWL_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Prowl", "prowl_notify_onsubtitledownload" ) PROWL_API = check_setting_str(CFG, "Prowl", "prowl_api", censor_log=True) PROWL_PRIORITY = check_setting_str(CFG, "Prowl", "prowl_priority", "0") PROWL_MESSAGE_TITLE = check_setting_str( CFG, "Prowl", "prowl_message_title", "SickRage" ) USE_TWITTER = check_setting_bool(CFG, "Twitter", "use_twitter") TWITTER_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Twitter", "twitter_notify_onsnatch" ) TWITTER_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Twitter", "twitter_notify_ondownload" ) TWITTER_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Twitter", "twitter_notify_onsubtitledownload" ) TWITTER_USERNAME = check_setting_str( CFG, "Twitter", "twitter_username", censor_log=True ) TWITTER_PASSWORD = check_setting_str( CFG, "Twitter", "twitter_password", censor_log=True ) TWITTER_PREFIX = check_setting_str(CFG, "Twitter", "twitter_prefix", GIT_REPO) TWITTER_DMTO = check_setting_str(CFG, "Twitter", "twitter_dmto") TWITTER_USEDM = check_setting_bool(CFG, "Twitter", "twitter_usedm") USE_TWILIO = check_setting_bool(CFG, "Twilio", "use_twilio") TWILIO_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Twilio", "twilio_notify_onsnatch" ) TWILIO_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Twilio", "twilio_notify_ondownload" ) TWILIO_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Twilio", "twilio_notify_onsubtitledownload" ) TWILIO_PHONE_SID = check_setting_str( CFG, "Twilio", "twilio_phone_sid", censor_log=True ) TWILIO_ACCOUNT_SID = check_setting_str( CFG, "Twilio", "twilio_account_sid", censor_log=True ) TWILIO_AUTH_TOKEN = check_setting_str( CFG, "Twilio", "twilio_auth_token", censor_log=True ) TWILIO_TO_NUMBER = check_setting_str( CFG, "Twilio", "twilio_to_number", censor_log=True ) USE_BOXCAR2 = check_setting_bool(CFG, "Boxcar2", "use_boxcar2") BOXCAR2_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Boxcar2", "boxcar2_notify_onsnatch" ) BOXCAR2_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Boxcar2", "boxcar2_notify_ondownload" ) BOXCAR2_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Boxcar2", "boxcar2_notify_onsubtitledownload" ) BOXCAR2_ACCESSTOKEN = check_setting_str( CFG, "Boxcar2", "boxcar2_accesstoken", censor_log=True ) USE_PUSHOVER = check_setting_bool(CFG, "Pushover", "use_pushover") PUSHOVER_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Pushover", "pushover_notify_onsnatch" ) PUSHOVER_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Pushover", "pushover_notify_ondownload" ) PUSHOVER_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Pushover", "pushover_notify_onsubtitledownload" ) PUSHOVER_USERKEY = check_setting_str( CFG, "Pushover", "pushover_userkey", censor_log=True ) PUSHOVER_APIKEY = check_setting_str( CFG, "Pushover", "pushover_apikey", censor_log=True ) PUSHOVER_DEVICE = check_setting_str(CFG, "Pushover", "pushover_device") PUSHOVER_SOUND = check_setting_str( CFG, "Pushover", "pushover_sound", "pushover" ) PUSHOVER_PRIORITY = check_setting_str(CFG, "Pushover", "pushover_priority", "0") USE_LIBNOTIFY = check_setting_bool(CFG, "Libnotify", "use_libnotify") LIBNOTIFY_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Libnotify", "libnotify_notify_onsnatch" ) LIBNOTIFY_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Libnotify", "libnotify_notify_ondownload" ) LIBNOTIFY_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Libnotify", "libnotify_notify_onsubtitledownload" ) USE_NMJ = check_setting_bool(CFG, "NMJ", "use_nmj") NMJ_HOST = check_setting_str(CFG, "NMJ", "nmj_host") NMJ_DATABASE = check_setting_str(CFG, "NMJ", "nmj_database") NMJ_MOUNT = check_setting_str(CFG, "NMJ", "nmj_mount") USE_NMJv2 = check_setting_bool(CFG, "NMJv2", "use_nmjv2") NMJv2_HOST = check_setting_str(CFG, "NMJv2", "nmjv2_host") NMJv2_DATABASE = check_setting_str(CFG, "NMJv2", "nmjv2_database") NMJv2_DBLOC = check_setting_str(CFG, "NMJv2", "nmjv2_dbloc") USE_SYNOINDEX = check_setting_bool(CFG, "Synology", "use_synoindex") USE_SYNOLOGYNOTIFIER = check_setting_bool( CFG, "SynologyNotifier", "use_synologynotifier" ) SYNOLOGYNOTIFIER_NOTIFY_ONSNATCH = check_setting_bool( CFG, "SynologyNotifier", "synologynotifier_notify_onsnatch" ) SYNOLOGYNOTIFIER_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "SynologyNotifier", "synologynotifier_notify_ondownload" ) SYNOLOGYNOTIFIER_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "SynologyNotifier", "synologynotifier_notify_onsubtitledownload" ) USE_SLACK = check_setting_bool(CFG, "Slack", "use_slack") SLACK_NOTIFY_SNATCH = check_setting_bool(CFG, "Slack", "slack_notify_snatch") SLACK_NOTIFY_DOWNLOAD = check_setting_bool( CFG, "Slack", "slack_notify_download" ) SLACK_WEBHOOK = check_setting_str(CFG, "Slack", "slack_webhook") USE_DISCORD = check_setting_bool(CFG, "Discord", "use_discord") DISCORD_NOTIFY_SNATCH = check_setting_bool( CFG, "Discord", "discord_notify_snatch" ) DISCORD_NOTIFY_DOWNLOAD = check_setting_bool( CFG, "Discord", "discord_notify_download" ) DISCORD_WEBHOOK = check_setting_str(CFG, "Discord", "discord_webhook") USE_TRAKT = check_setting_bool(CFG, "Trakt", "use_trakt") TRAKT_USERNAME = check_setting_str( CFG, "Trakt", "trakt_username", censor_log=True ) TRAKT_ACCESS_TOKEN = check_setting_str( CFG, "Trakt", "trakt_access_token", censor_log=True ) TRAKT_REFRESH_TOKEN = check_setting_str( CFG, "Trakt", "trakt_refresh_token", censor_log=True ) TRAKT_REMOVE_WATCHLIST = check_setting_bool( CFG, "Trakt", "trakt_remove_watchlist" ) TRAKT_REMOVE_SERIESLIST = check_setting_bool( CFG, "Trakt", "trakt_remove_serieslist" ) TRAKT_REMOVE_SHOW_FROM_SICKRAGE = check_setting_bool( CFG, "Trakt", "trakt_remove_show_from_sickrage" ) TRAKT_SYNC_WATCHLIST = check_setting_bool(CFG, "Trakt", "trakt_sync_watchlist") TRAKT_METHOD_ADD = check_setting_int(CFG, "Trakt", "trakt_method_add") TRAKT_START_PAUSED = check_setting_bool(CFG, "Trakt", "trakt_start_paused") TRAKT_USE_RECOMMENDED = check_setting_bool( CFG, "Trakt", "trakt_use_recommended" ) TRAKT_SYNC = check_setting_bool(CFG, "Trakt", "trakt_sync") TRAKT_SYNC_REMOVE = check_setting_bool(CFG, "Trakt", "trakt_sync_remove") TRAKT_DEFAULT_INDEXER = check_setting_int( CFG, "Trakt", "trakt_default_indexer", 1 ) TRAKT_TIMEOUT = check_setting_int(CFG, "Trakt", "trakt_timeout", 30) TRAKT_BLACKLIST_NAME = check_setting_str(CFG, "Trakt", "trakt_blacklist_name") USE_PYTIVO = check_setting_bool(CFG, "pyTivo", "use_pytivo") PYTIVO_NOTIFY_ONSNATCH = check_setting_bool( CFG, "pyTivo", "pytivo_notify_onsnatch" ) PYTIVO_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "pyTivo", "pytivo_notify_ondownload" ) PYTIVO_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "pyTivo", "pytivo_notify_onsubtitledownload" ) PYTIVO_UPDATE_LIBRARY = check_setting_bool( CFG, "pyTivo", "pyTivo_update_library" ) PYTIVO_HOST = check_setting_str(CFG, "pyTivo", "pytivo_host") PYTIVO_SHARE_NAME = check_setting_str(CFG, "pyTivo", "pytivo_share_name") PYTIVO_TIVO_NAME = check_setting_str(CFG, "pyTivo", "pytivo_tivo_name") USE_NMA = check_setting_bool(CFG, "NMA", "use_nma") NMA_NOTIFY_ONSNATCH = check_setting_bool(CFG, "NMA", "nma_notify_onsnatch") NMA_NOTIFY_ONDOWNLOAD = check_setting_bool(CFG, "NMA", "nma_notify_ondownload") NMA_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "NMA", "nma_notify_onsubtitledownload" ) NMA_API = check_setting_str(CFG, "NMA", "nma_api", censor_log=True) NMA_PRIORITY = check_setting_str(CFG, "NMA", "nma_priority", "0") USE_PUSHALOT = check_setting_bool(CFG, "Pushalot", "use_pushalot") PUSHALOT_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Pushalot", "pushalot_notify_onsnatch" ) PUSHALOT_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Pushalot", "pushalot_notify_ondownload" ) PUSHALOT_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Pushalot", "pushalot_notify_onsubtitledownload" ) PUSHALOT_AUTHORIZATIONTOKEN = check_setting_str( CFG, "Pushalot", "pushalot_authorizationtoken", censor_log=True ) USE_PUSHBULLET = check_setting_bool(CFG, "Pushbullet", "use_pushbullet") PUSHBULLET_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Pushbullet", "pushbullet_notify_onsnatch" ) PUSHBULLET_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Pushbullet", "pushbullet_notify_ondownload" ) PUSHBULLET_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Pushbullet", "pushbullet_notify_onsubtitledownload" ) PUSHBULLET_API = check_setting_str( CFG, "Pushbullet", "pushbullet_api", censor_log=True ) PUSHBULLET_DEVICE = check_setting_str(CFG, "Pushbullet", "pushbullet_device") PUSHBULLET_CHANNEL = check_setting_str(CFG, "Pushbullet", "pushbullet_channel") USE_EMAIL = check_setting_bool(CFG, "Email", "use_email") EMAIL_NOTIFY_ONSNATCH = check_setting_bool( CFG, "Email", "email_notify_onsnatch" ) EMAIL_NOTIFY_ONDOWNLOAD = check_setting_bool( CFG, "Email", "email_notify_ondownload" ) EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD = check_setting_bool( CFG, "Email", "email_notify_onsubtitledownload" ) EMAIL_HOST = check_setting_str(CFG, "Email", "email_host") EMAIL_PORT = check_setting_int(CFG, "Email", "email_port", 25) EMAIL_TLS = check_setting_bool(CFG, "Email", "email_tls") EMAIL_USER = check_setting_str(CFG, "Email", "email_user", censor_log=True) EMAIL_PASSWORD = check_setting_str( CFG, "Email", "email_password", censor_log=True ) EMAIL_FROM = check_setting_str(CFG, "Email", "email_from") EMAIL_LIST = check_setting_str(CFG, "Email", "email_list") EMAIL_SUBJECT = check_setting_str(CFG, "Email", "email_subject") USE_SUBTITLES = check_setting_bool(CFG, "Subtitles", "use_subtitles") SUBTITLES_INCLUDE_SPECIALS = check_setting_bool( CFG, "Subtitles", "subtitles_include_specials", True ) SUBTITLES_LANGUAGES = check_setting_str( CFG, "Subtitles", "subtitles_languages" ).split(",") if SUBTITLES_LANGUAGES[0] == "": SUBTITLES_LANGUAGES = [] SUBTITLES_DIR = check_setting_str(CFG, "Subtitles", "subtitles_dir") SUBTITLES_SERVICES_LIST = check_setting_str( CFG, "Subtitles", "SUBTITLES_SERVICES_LIST" ).split(",") SUBTITLES_SERVICES_ENABLED = [ int(x) for x in check_setting_str( CFG, "Subtitles", "SUBTITLES_SERVICES_ENABLED" ).split("|") if x ] SUBTITLES_DEFAULT = check_setting_bool(CFG, "Subtitles", "subtitles_default") SUBTITLES_HISTORY = check_setting_bool(CFG, "Subtitles", "subtitles_history") SUBTITLES_PERFECT_MATCH = check_setting_bool( CFG, "Subtitles", "subtitles_perfect_match", True ) EMBEDDED_SUBTITLES_ALL = check_setting_bool( CFG, "Subtitles", "embedded_subtitles_all" ) SUBTITLES_HEARING_IMPAIRED = check_setting_bool( CFG, "Subtitles", "subtitles_hearing_impaired" ) SUBTITLES_FINDER_FREQUENCY = check_setting_int( CFG, "Subtitles", "subtitles_finder_frequency", 1 ) SUBTITLES_MULTI = check_setting_bool(CFG, "Subtitles", "subtitles_multi", True) SUBTITLES_KEEP_ONLY_WANTED = check_setting_bool( CFG, "Subtitles", "subtitles_keep_only_wanted" ) SUBTITLES_EXTRA_SCRIPTS = [ x.strip() for x in check_setting_str( CFG, "Subtitles", "subtitles_extra_scripts" ).split("|") if x.strip() ] ADDIC7ED_USER = check_setting_str( CFG, "Subtitles", "addic7ed_username", censor_log=True ) ADDIC7ED_PASS = check_setting_str( CFG, "Subtitles", "addic7ed_password", censor_log=True ) ITASA_USER = check_setting_str( CFG, "Subtitles", "itasa_username", censor_log=True ) ITASA_PASS = check_setting_str( CFG, "Subtitles", "itasa_password", censor_log=True ) LEGENDASTV_USER = check_setting_str( CFG, "Subtitles", "legendastv_username", censor_log=True ) LEGENDASTV_PASS = check_setting_str( CFG, "Subtitles", "legendastv_password", censor_log=True ) OPENSUBTITLES_USER = check_setting_str( CFG, "Subtitles", "opensubtitles_username", censor_log=True ) OPENSUBTITLES_PASS = check_setting_str( CFG, "Subtitles", "opensubtitles_password", censor_log=True ) USE_FAILED_DOWNLOADS = check_setting_bool( CFG, "FailedDownloads", "use_failed_downloads" ) DELETE_FAILED = check_setting_bool(CFG, "FailedDownloads", "delete_failed") GIT_PATH = check_setting_str(CFG, "General", "git_path") IGNORE_WORDS = check_setting_str(CFG, "General", "ignore_words", IGNORE_WORDS) TRACKERS_LIST = check_setting_str( CFG, "General", "trackers_list", TRACKERS_LIST ) REQUIRE_WORDS = check_setting_str( CFG, "General", "require_words", REQUIRE_WORDS ) IGNORED_SUBS_LIST = check_setting_str( CFG, "General", "ignored_subs_list", IGNORED_SUBS_LIST ) CALENDAR_UNPROTECTED = check_setting_bool( CFG, "General", "calendar_unprotected" ) CALENDAR_ICONS = check_setting_bool(CFG, "General", "calendar_icons") NO_RESTART = check_setting_bool(CFG, "General", "no_restart") EXTRA_SCRIPTS = [ x.strip() for x in check_setting_str(CFG, "General", "extra_scripts").split("|") if x.strip() ] USE_LISTVIEW = check_setting_bool(CFG, "General", "use_listview") ANIMESUPPORT = False USE_ANIDB = check_setting_bool(CFG, "ANIDB", "use_anidb") ANIDB_USERNAME = check_setting_str( CFG, "ANIDB", "anidb_username", censor_log=True ) ANIDB_PASSWORD = check_setting_str( CFG, "ANIDB", "anidb_password", censor_log=True ) ANIDB_USE_MYLIST = check_setting_bool(CFG, "ANIDB", "anidb_use_mylist") ANIME_SPLIT_HOME = check_setting_bool(CFG, "ANIME", "anime_split_home") ANIME_SPLIT_HOME_IN_TABS = check_setting_bool( CFG, "ANIME", "anime_split_home_in_tabs" ) METADATA_KODI = check_setting_str( CFG, "General", "metadata_kodi", "0|0|0|0|0|0|0|0|0|0" ) METADATA_KODI_12PLUS = check_setting_str( CFG, "General", "metadata_kodi_12plus", "0|0|0|0|0|0|0|0|0|0" ) METADATA_MEDIABROWSER = check_setting_str( CFG, "General", "metadata_mediabrowser", "0|0|0|0|0|0|0|0|0|0" ) METADATA_PS3 = check_setting_str( CFG, "General", "metadata_ps3", "0|0|0|0|0|0|0|0|0|0" ) METADATA_WDTV = check_setting_str( CFG, "General", "metadata_wdtv", "0|0|0|0|0|0|0|0|0|0" ) METADATA_TIVO = check_setting_str( CFG, "General", "metadata_tivo", "0|0|0|0|0|0|0|0|0|0" ) METADATA_MEDE8ER = check_setting_str( CFG, "General", "metadata_mede8er", "0|0|0|0|0|0|0|0|0|0" ) HOME_LAYOUT = check_setting_str(CFG, "GUI", "home_layout", "poster") HISTORY_LAYOUT = check_setting_str(CFG, "GUI", "history_layout", "detailed") HISTORY_LIMIT = check_setting_str(CFG, "GUI", "history_limit", "100") DISPLAY_SHOW_SPECIALS = check_setting_bool( CFG, "GUI", "display_show_specials", True ) COMING_EPS_LAYOUT = check_setting_str(CFG, "GUI", "coming_eps_layout", "banner") COMING_EPS_DISPLAY_PAUSED = check_setting_bool( CFG, "GUI", "coming_eps_display_paused" ) COMING_EPS_SORT = check_setting_str(CFG, "GUI", "coming_eps_sort", "date") COMING_EPS_MISSED_RANGE = check_setting_int( CFG, "GUI", "coming_eps_missed_range", 7 ) FUZZY_DATING = check_setting_bool(CFG, "GUI", "fuzzy_dating") TRIM_ZERO = check_setting_bool(CFG, "GUI", "trim_zero") DATE_PRESET = check_setting_str(CFG, "GUI", "date_preset", "%x") TIME_PRESET_W_SECONDS = check_setting_str( CFG, "GUI", "time_preset", "%I:%M:%S %p" ) TIME_PRESET = TIME_PRESET_W_SECONDS.replace(":%S", "") TIMEZONE_DISPLAY = check_setting_str(CFG, "GUI", "timezone_display", "local") POSTER_SORTBY = check_setting_str(CFG, "GUI", "poster_sortby", "name") POSTER_SORTDIR = check_setting_int(CFG, "GUI", "poster_sortdir", 1) DISPLAY_ALL_SEASONS = check_setting_bool( CFG, "General", "display_all_seasons", True ) # initialize NZB and TORRENT providers providerList = providers.makeProviderList() NEWZNAB_DATA = check_setting_str(CFG, "Newznab", "newznab_data") newznabProviderList = NewznabProvider.get_providers_list(NEWZNAB_DATA) TORRENTRSS_DATA = check_setting_str(CFG, "TorrentRss", "torrentrss_data") torrentRssProviderList = TorrentRssProvider.get_providers_list(TORRENTRSS_DATA) # dynamically load provider settings for curTorrentProvider in [ curProvider for curProvider in providers.sortedProviderList() if curProvider.provider_type == GenericProvider.TORRENT ]: curTorrentProvider.enabled = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() ) if hasattr(curTorrentProvider, "custom_url"): curTorrentProvider.custom_url = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_custom_url", "", censor_log=True, ) if hasattr(curTorrentProvider, "api_key"): curTorrentProvider.api_key = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_api_key", censor_log=True, ) if hasattr(curTorrentProvider, "hash"): curTorrentProvider.hash = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_hash", censor_log=True, ) if hasattr(curTorrentProvider, "digest"): curTorrentProvider.digest = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_digest", censor_log=True, ) if hasattr(curTorrentProvider, "username"): curTorrentProvider.username = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_username", censor_log=True, ) if hasattr(curTorrentProvider, "password"): curTorrentProvider.password = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_password", censor_log=True, ) if hasattr(curTorrentProvider, "passkey"): curTorrentProvider.passkey = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_passkey", censor_log=True, ) if hasattr(curTorrentProvider, "pin"): curTorrentProvider.pin = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_pin", censor_log=True, ) if hasattr(curTorrentProvider, "confirmed"): curTorrentProvider.confirmed = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_confirmed", True, ) if hasattr(curTorrentProvider, "ranked"): curTorrentProvider.ranked = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_ranked", True, ) if hasattr(curTorrentProvider, "engrelease"): curTorrentProvider.engrelease = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_engrelease", ) if hasattr(curTorrentProvider, "onlyspasearch"): curTorrentProvider.onlyspasearch = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_onlyspasearch", ) if hasattr(curTorrentProvider, "sorting"): curTorrentProvider.sorting = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_sorting", "seeders", ) if hasattr(curTorrentProvider, "options"): curTorrentProvider.options = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_options", "", ) if hasattr(curTorrentProvider, "ratio"): curTorrentProvider.ratio = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_ratio", "", ) if hasattr(curTorrentProvider, "minseed"): curTorrentProvider.minseed = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_minseed", 1, ) if hasattr(curTorrentProvider, "minleech"): curTorrentProvider.minleech = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_minleech", 0, ) if hasattr(curTorrentProvider, "freeleech"): curTorrentProvider.freeleech = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_freeleech", ) if hasattr(curTorrentProvider, "search_mode"): curTorrentProvider.search_mode = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_search_mode", "eponly", ) if hasattr(curTorrentProvider, "search_fallback"): curTorrentProvider.search_fallback = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_search_fallback", ) if hasattr(curTorrentProvider, "enable_daily"): curTorrentProvider.enable_daily = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_enable_daily", True, ) if hasattr(curTorrentProvider, "enable_backlog"): curTorrentProvider.enable_backlog = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_enable_backlog", curTorrentProvider.supports_backlog, ) if hasattr(curTorrentProvider, "cat"): curTorrentProvider.cat = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_cat", 0, ) if hasattr(curTorrentProvider, "subtitle"): curTorrentProvider.subtitle = check_setting_bool( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_subtitle", ) if hasattr(curTorrentProvider, "cookies"): curTorrentProvider.cookies = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_cookies", censor_log=True, ) for curNzbProvider in [ curProvider for curProvider in providers.sortedProviderList() if curProvider.provider_type == GenericProvider.NZB ]: curNzbProvider.enabled = check_setting_bool( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() ) if hasattr(curNzbProvider, "api_key"): curNzbProvider.api_key = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_api_key", censor_log=True, ) if hasattr(curNzbProvider, "username"): curNzbProvider.username = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_username", censor_log=True, ) if hasattr(curNzbProvider, "search_mode"): curNzbProvider.search_mode = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_search_mode", "eponly", ) if hasattr(curNzbProvider, "search_fallback"): curNzbProvider.search_fallback = check_setting_bool( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_search_fallback", ) if hasattr(curNzbProvider, "enable_daily"): curNzbProvider.enable_daily = check_setting_bool( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_enable_daily", True, ) if hasattr(curNzbProvider, "enable_backlog"): curNzbProvider.enable_backlog = check_setting_bool( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_enable_backlog", curNzbProvider.supports_backlog, ) providers.check_enabled_providers() if not ek(os.path.isfile, CONFIG_FILE): logger.log( "Unable to find '" + CONFIG_FILE + "', all settings will be default!", logger.DEBUG, ) save_config() # initialize the main SB database main_db_con = db.DBConnection() db.upgradeDatabase(main_db_con, mainDB.InitialSchema) # initialize the cache database cache_db_con = db.DBConnection("cache.db") db.upgradeDatabase(cache_db_con, cache_db.InitialSchema) # initialize the failed downloads database failed_db_con = db.DBConnection("failed.db") db.upgradeDatabase(failed_db_con, failed_db.InitialSchema) # fix up any db problems main_db_con = db.DBConnection() db.sanityCheckDatabase(main_db_con, mainDB.MainSanityCheck) # migrate the config if it needs it migrator = ConfigMigrator(CFG) migrator.migrate_config() # initialize metadata_providers metadata_provider_dict = metadata.get_metadata_generator_dict() for cur_metadata_tuple in [ (METADATA_KODI, metadata.kodi), (METADATA_KODI_12PLUS, metadata.kodi_12plus), (METADATA_MEDIABROWSER, metadata.mediabrowser), (METADATA_PS3, metadata.ps3), (METADATA_WDTV, metadata.wdtv), (METADATA_TIVO, metadata.tivo), (METADATA_MEDE8ER, metadata.mede8er), ]: (cur_metadata_config, cur_metadata_class) = cur_metadata_tuple tmp_provider = cur_metadata_class.metadata_class() tmp_provider.set_config(cur_metadata_config) metadata_provider_dict[tmp_provider.name] = tmp_provider # initialize schedulers # updaters versionCheckScheduler = scheduler.Scheduler( versionChecker.CheckVersion(), cycleTime=datetime.timedelta(hours=UPDATE_FREQUENCY), threadName="CHECKVERSION", silent=False, ) showQueueScheduler = scheduler.Scheduler( show_queue.ShowQueue(), cycleTime=datetime.timedelta(seconds=5), threadName="SHOWQUEUE", ) showUpdateScheduler = scheduler.Scheduler( showUpdater.ShowUpdater(), run_delay=datetime.timedelta(seconds=20), cycleTime=datetime.timedelta(hours=1), start_time=datetime.time(hour=SHOWUPDATE_HOUR), threadName="SHOWUPDATER", ) # searchers searchQueueScheduler = scheduler.Scheduler( search_queue.SearchQueue(), run_delay=datetime.timedelta(seconds=10), cycleTime=datetime.timedelta(seconds=5), threadName="SEARCHQUEUE", ) dailySearchScheduler = scheduler.Scheduler( dailysearcher.DailySearcher(), run_delay=datetime.timedelta(minutes=10), cycleTime=datetime.timedelta(minutes=DAILYSEARCH_FREQUENCY), threadName="DAILYSEARCHER", ) update_interval = datetime.timedelta(minutes=BACKLOG_FREQUENCY) backlogSearchScheduler = searchBacklog.BacklogSearchScheduler( searchBacklog.BacklogSearcher(), cycleTime=update_interval, threadName="BACKLOG", run_delay=update_interval, ) search_intervals = { "15m": 15, "45m": 45, "90m": 90, "4h": 4 * 60, "daily": 24 * 60, } if CHECK_PROPERS_INTERVAL in search_intervals: update_interval = datetime.timedelta( minutes=search_intervals[CHECK_PROPERS_INTERVAL] ) run_at = None else: update_interval = datetime.timedelta(hours=1) run_at = datetime.time(hour=1) # 1 AM properFinderScheduler = scheduler.Scheduler( properFinder.ProperFinder(), cycleTime=update_interval, threadName="FINDPROPERS", start_time=run_at, run_delay=update_interval, silent=not DOWNLOAD_PROPERS, ) # processors postProcessorTaskScheduler = scheduler.Scheduler( post_processing_queue.ProcessingQueue(), run_delay=datetime.timedelta(seconds=5), cycleTime=datetime.timedelta(seconds=5), threadName="POSTPROCESSOR", ) autoPostProcessorScheduler = scheduler.Scheduler( auto_postprocessor.PostProcessor(), run_delay=datetime.timedelta(minutes=5), cycleTime=datetime.timedelta(minutes=AUTOPOSTPROCESSOR_FREQUENCY), threadName="POSTPROCESSOR", silent=not PROCESS_AUTOMATICALLY, ) traktCheckerScheduler = scheduler.Scheduler( traktChecker.TraktChecker(), run_delay=datetime.timedelta(minutes=5), cycleTime=datetime.timedelta(hours=1), threadName="TRAKTCHECKER", silent=not USE_TRAKT, ) subtitlesFinderScheduler = scheduler.Scheduler( subtitles.SubtitlesFinder(), run_delay=datetime.timedelta(minutes=10), cycleTime=datetime.timedelta(hours=SUBTITLES_FINDER_FREQUENCY), threadName="FINDSUBTITLES", silent=not USE_SUBTITLES, ) __INITIALIZED__["0"] = True return True
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def check_setting_int( config, cfg_name, item_name, def_val=0, min_val=None, max_val=None, fallback_def=True, silent=True, ): """ Checks config setting of integer type :param config: config object :type config: ConfigObj() :param cfg_name: section name of config :param item_name: item name of section :param def_val: default value to return in case a value can't be retrieved from config, or in case value couldn't be converted, or if `value < min_val` or `value > max_val` (default: 0) :param min_val: force value to be greater than or equal to `min_val` (optional) :param max_val: force value to be lesser than or equal to `max_val` (optional) :param fallback_def: if True, `def_val` will be returned when value not in range of `min_val` and `max_val`. otherwise, `min_val`/`max_val` value will be returned respectively (default: True) :param silent: don't log result to debug log (default: True) :return: value of `config[cfg_name][item_name]` or `min_val`/`max_val` (see def_low_high) `def_val` (see def_val) :rtype: int """ if not isinstance(def_val, int): logger.log( "{dom}:{key} default value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="int", dt=type(def_val) ), logger.ERROR, ) if not (min_val is None or isinstance(min_val, int)): logger.log( "{dom}:{key} min_val value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="int", dt=type(min_val) ), logger.ERROR, ) if not (max_val is None or isinstance(max_val, int)): logger.log( "{dom}:{key} max_val value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="int", dt=type(max_val) ), logger.ERROR, ) try: if not ( check_section(config, cfg_name) and check_section(config[cfg_name], item_name) ): raise ValueError my_val = config[cfg_name][item_name] if six.text_type(my_val).lower() == "true": my_val = 1 elif six.text_type(my_val).lower() == "false": my_val = 0 my_val = int(my_val) if isinstance(min_val, int) and my_val < min_val: my_val = config[cfg_name][item_name] = (min_val, def_val)[fallback_def] if isinstance(max_val, int) and my_val > max_val: my_val = config[cfg_name][item_name] = (max_val, def_val)[fallback_def] except (ValueError, IndexError, KeyError, TypeError): my_val = def_val if cfg_name not in config: config[cfg_name] = {} config[cfg_name][item_name] = my_val if not silent: logger.log(item_name + " -> " + six.text_type(my_val), logger.DEBUG) return my_val
def check_setting_int(config, cfg_name, item_name, def_val=0, silent=True): if not isinstance(def_val, int): logger.log( "{dom}:{key} default value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="int", dt=type(def_val) ), logger.ERROR, ) try: if not ( check_section(config, cfg_name) and check_section(config[cfg_name], item_name) ): raise ValueError my_val = config[cfg_name][item_name] if six.text_type(my_val).lower() == "true": my_val = 1 elif six.text_type(my_val).lower() == "false": my_val = 0 my_val = int(my_val) except (ValueError, IndexError, KeyError, TypeError): my_val = def_val if cfg_name not in config: config[cfg_name] = {} config[cfg_name][item_name] = my_val if not silent: logger.log(item_name + " -> " + six.text_type(my_val), logger.DEBUG) return my_val
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def check_setting_float( config, cfg_name, item_name, def_val=0.0, min_val=None, max_val=None, fallback_def=True, silent=True, ): """ Checks config setting of float type :param config: config object :type config: ConfigObj() :param cfg_name: section name of config :param item_name: item name of section :param def_val: default value to return in case a value can't be retrieved from config or if couldn't be converted, or if `value < min_val` or `value > max_val` (default: 0.0) :param min_val: force value to be greater than or equal to `min_val` (optional) :param max_val: force value to be lesser than or equal to `max_val` (optional) :param fallback_def: if True, `def_val` will be returned when value not in range of `min_val` and `max_val`. otherwise, `min_val`/`max_val` value will be returned respectively (default: True) :param silent: don't log result to debug log (default: True) :return: value of `config[cfg_name][item_name]` or `min_val`/`max_val` (see def_low_high) `def_val` (see def_val) :rtype: float """ if not isinstance(def_val, float): logger.log( "{dom}:{key} default value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="float", dt=type(def_val) ), logger.ERROR, ) if not (min_val is None or isinstance(min_val, float)): logger.log( "{dom}:{key} min_val value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="float", dt=type(min_val) ), logger.ERROR, ) if not (max_val is None or isinstance(max_val, float)): logger.log( "{dom}:{key} max_val value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="float", dt=type(max_val) ), logger.ERROR, ) try: if not ( check_section(config, cfg_name) and check_section(config[cfg_name], item_name) ): raise ValueError my_val = float(config[cfg_name][item_name]) if isinstance(min_val, float) and my_val < min_val: my_val = config[cfg_name][item_name] = (min_val, def_val)[fallback_def] if isinstance(max_val, float) and my_val > max_val: my_val = config[cfg_name][item_name] = (max_val, def_val)[fallback_def] except (ValueError, IndexError, KeyError, TypeError): my_val = def_val if cfg_name not in config: config[cfg_name] = {} config[cfg_name][item_name] = my_val if not silent: logger.log(item_name + " -> " + six.text_type(my_val), logger.DEBUG) return my_val
def check_setting_float(config, cfg_name, item_name, def_val=0.0, silent=True): if not isinstance(def_val, float): logger.log( "{dom}:{key} default value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="float", dt=type(def_val) ), logger.ERROR, ) try: if not ( check_section(config, cfg_name) and check_section(config[cfg_name], item_name) ): raise ValueError my_val = float(config[cfg_name][item_name]) except (ValueError, IndexError, KeyError, TypeError): my_val = def_val if cfg_name not in config: config[cfg_name] = {} config[cfg_name][item_name] = my_val if not silent: logger.log(item_name + " -> " + six.text_type(my_val), logger.DEBUG) return my_val
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def check_setting_str( config, cfg_name, item_name, def_val=six.text_type(""), silent=True, censor_log=False, ): """ Checks config setting of string types :param config: config object :type config: ConfigObj() :param cfg_name: section name of config :param item_name: item name of section :param def_val: default value to return in case a value can't be retrieved from config or if couldn't be converted (default: empty six.text_type) :param silent: don't log result to debug log (default: True) :param censor_log: overrides and adds this setting to logger censored items (default: False) :return: decrypted value of `config[cfg_name][item_name]` or `def_val` (see cases of def_val) :rtype: six.text_type """ if not isinstance(def_val, six.string_types): logger.log( "{dom}:{key} default value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="string", dt=type(def_val) ), logger.ERROR, ) # For passwords you must include the word `password` in the item_name and add `helpers.encrypt(ITEM_NAME, ENCRYPTION_VERSION)` in save_config() encryption_version = (0, sickbeard.ENCRYPTION_VERSION)["password" in item_name] try: if not (check_section(config, cfg_name) and item_name in config[cfg_name]): raise ValueError my_val = helpers.decrypt(config[cfg_name][item_name], encryption_version) if six.text_type(my_val) == six.text_type(None) or not six.text_type(my_val): raise ValueError except (ValueError, IndexError, KeyError): my_val = def_val if cfg_name not in config: config[cfg_name] = {} config[cfg_name][item_name] = helpers.encrypt(my_val, encryption_version) if ( censor_log or (cfg_name, item_name) in six.iteritems(logger.censored_items) ) and not item_name.endswith("custom_url"): logger.censored_items[cfg_name, item_name] = my_val if not silent: logger.log(item_name + " -> " + my_val, logger.DEBUG) return six.text_type(my_val)
def check_setting_str( config, cfg_name, item_name, def_val=six.text_type(""), silent=True, censor_log=False, ): if not isinstance(def_val, six.string_types): logger.log( "{dom}:{key} default value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="string", dt=type(def_val) ), logger.ERROR, ) # For passwords you must include the word `password` in the item_name and add `helpers.encrypt(ITEM_NAME, ENCRYPTION_VERSION)` in save_config() encryption_version = (0, sickbeard.ENCRYPTION_VERSION)["password" in item_name] try: if not (check_section(config, cfg_name) and item_name in config[cfg_name]): raise ValueError my_val = helpers.decrypt(config[cfg_name][item_name], encryption_version) if six.text_type(my_val) == six.text_type(None) or not six.text_type(my_val): raise ValueError except (ValueError, IndexError, KeyError): my_val = def_val if cfg_name not in config: config[cfg_name] = {} config[cfg_name][item_name] = helpers.encrypt(my_val, encryption_version) if ( censor_log or (cfg_name, item_name) in six.iteritems(logger.censored_items) ) and not item_name.endswith("custom_url"): logger.censored_items[cfg_name, item_name] = my_val if not silent: logger.log(item_name + " -> " + my_val, logger.DEBUG) return six.text_type(my_val)
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def check_setting_bool(config, cfg_name, item_name, def_val=False, silent=True): """ Checks config setting of boolean type :param config: config object :type config: ConfigObj() :param cfg_name: section name of config :param item_name: item name of section :param def_val: default value to return in case a value can't be retrieved from config or if couldn't be converted (default: False) :param silent: don't log result to debug log (default: True) :return: value of `config[cfg_name][item_name]` or `def_val` (see cases of def_val) :rtype: bool """ try: if not isinstance(def_val, bool): logger.log( "{dom}:{key} default value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="bool", dt=type(def_val) ), logger.ERROR, ) if not (check_section(config, cfg_name) and item_name in config[cfg_name]): raise ValueError my_val = config[cfg_name][item_name] my_val = six.text_type(my_val) if my_val == six.text_type(None) or not my_val: raise ValueError my_val = checkbox_to_value(my_val) except (KeyError, IndexError, ValueError): my_val = bool(def_val) if cfg_name not in config: config[cfg_name] = {} config[cfg_name][item_name] = my_val if not silent: logger.log(item_name + " -> " + six.text_type(my_val), logger.DEBUG) return my_val
def check_setting_bool(config, cfg_name, item_name, def_val=False, silent=True): try: if not isinstance(def_val, bool): logger.log( "{dom}:{key} default value is not the correct type. Expected {t}, got {dt}".format( dom=cfg_name, key=item_name, t="bool", dt=type(def_val) ), logger.ERROR, ) if not (check_section(config, cfg_name) and item_name in config[cfg_name]): raise ValueError my_val = config[cfg_name][item_name] my_val = six.text_type(my_val) if my_val == six.text_type(None) or not my_val: raise ValueError my_val = checkbox_to_value(my_val) except (KeyError, IndexError, ValueError): my_val = bool(def_val) if cfg_name not in config: config[cfg_name] = {} config[cfg_name][item_name] = my_val if not silent: logger.log(item_name + " -> " + six.text_type(my_val), logger.DEBUG) return my_val
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def savePostProcessing( self, kodi_data=None, kodi_12plus_data=None, mediabrowser_data=None, sony_ps3_data=None, wdtv_data=None, tivo_data=None, mede8er_data=None, keep_processed_dir=None, process_method=None, processor_follow_symlinks=None, del_rar_contents=None, process_automatically=None, no_delete=None, rename_episodes=None, airdate_episodes=None, file_timestamp_timezone=None, unpack=None, unpack_dir=None, unrar_tool=None, alt_unrar_tool=None, move_associated_files=None, delete_non_associated_files=None, sync_files=None, postpone_if_sync_files=None, allowed_extensions=None, tv_download_dir=None, create_missing_show_dirs=None, add_shows_wo_dir=None, extra_scripts=None, nfo_rename=None, naming_pattern=None, naming_multi_ep=None, naming_custom_abd=None, naming_anime=None, naming_abd_pattern=None, naming_strip_year=None, naming_custom_sports=None, naming_sports_pattern=None, naming_custom_anime=None, naming_anime_pattern=None, naming_anime_multi_ep=None, autopostprocessor_frequency=None, use_icacls=None, ): results = [] if not config.change_tv_download_dir(tv_download_dir): results += [ "Unable to create directory " + ek(os.path.normpath, tv_download_dir) + ", dir not changed." ] config.change_postprocessor_frequency(autopostprocessor_frequency) config.change_process_automatically(process_automatically) sickbeard.USE_ICACLS = config.checkbox_to_value(use_icacls) config.change_unrar_tool(unrar_tool, alt_unrar_tool) unpack = try_int(unpack) if unpack == 1: sickbeard.UNPACK = int(self.isRarSupported() != "not supported") if sickbeard.UNPACK != 1: results.append(_("Unpacking Not Supported, disabling unpack setting")) else: sickbeard.UNPACK = unpack if not config.change_unpack_dir(unpack_dir): results += [ "Unable to change unpack directory to " + ek(os.path.normpath, unpack_dir) + ", check the logs." ] sickbeard.NO_DELETE = config.checkbox_to_value(no_delete) sickbeard.KEEP_PROCESSED_DIR = config.checkbox_to_value(keep_processed_dir) sickbeard.CREATE_MISSING_SHOW_DIRS = config.checkbox_to_value( create_missing_show_dirs ) sickbeard.ADD_SHOWS_WO_DIR = config.checkbox_to_value(add_shows_wo_dir) sickbeard.PROCESS_METHOD = process_method sickbeard.PROCESSOR_FOLLOW_SYMLINKS = config.checkbox_to_value( processor_follow_symlinks ) sickbeard.DELRARCONTENTS = config.checkbox_to_value(del_rar_contents) sickbeard.EXTRA_SCRIPTS = [x.strip() for x in extra_scripts.split("|") if x.strip()] sickbeard.RENAME_EPISODES = config.checkbox_to_value(rename_episodes) sickbeard.AIRDATE_EPISODES = config.checkbox_to_value(airdate_episodes) sickbeard.FILE_TIMESTAMP_TIMEZONE = file_timestamp_timezone sickbeard.MOVE_ASSOCIATED_FILES = config.checkbox_to_value(move_associated_files) sickbeard.DELETE_NON_ASSOCIATED_FILES = config.checkbox_to_value( delete_non_associated_files ) sickbeard.SYNC_FILES = sync_files sickbeard.POSTPONE_IF_SYNC_FILES = config.checkbox_to_value(postpone_if_sync_files) sickbeard.ALLOWED_EXTENSIONS = ",".join( {x.strip() for x in allowed_extensions.split(",") if x.strip()} ) sickbeard.NAMING_CUSTOM_ABD = config.checkbox_to_value(naming_custom_abd) sickbeard.NAMING_CUSTOM_SPORTS = config.checkbox_to_value(naming_custom_sports) sickbeard.NAMING_CUSTOM_ANIME = config.checkbox_to_value(naming_custom_anime) sickbeard.NAMING_STRIP_YEAR = config.checkbox_to_value(naming_strip_year) sickbeard.NFO_RENAME = config.checkbox_to_value(nfo_rename) sickbeard.METADATA_KODI = kodi_data sickbeard.METADATA_KODI_12PLUS = kodi_12plus_data sickbeard.METADATA_MEDIABROWSER = mediabrowser_data sickbeard.METADATA_PS3 = sony_ps3_data sickbeard.METADATA_WDTV = wdtv_data sickbeard.METADATA_TIVO = tivo_data sickbeard.METADATA_MEDE8ER = mede8er_data sickbeard.metadata_provider_dict["KODI"].set_config(sickbeard.METADATA_KODI) sickbeard.metadata_provider_dict["KODI 12+"].set_config( sickbeard.METADATA_KODI_12PLUS ) sickbeard.metadata_provider_dict["MediaBrowser"].set_config( sickbeard.METADATA_MEDIABROWSER ) sickbeard.metadata_provider_dict["Sony PS3"].set_config(sickbeard.METADATA_PS3) sickbeard.metadata_provider_dict["WDTV"].set_config(sickbeard.METADATA_WDTV) sickbeard.metadata_provider_dict["TIVO"].set_config(sickbeard.METADATA_TIVO) sickbeard.metadata_provider_dict["Mede8er"].set_config(sickbeard.METADATA_MEDE8ER) if ( self.isNamingValid(naming_pattern, naming_multi_ep, anime_type=naming_anime) != "invalid" ): sickbeard.NAMING_PATTERN = naming_pattern sickbeard.NAMING_MULTI_EP = try_int( naming_multi_ep, NAMING_LIMITED_EXTEND_E_PREFIXED ) sickbeard.NAMING_FORCE_FOLDERS = naming.check_force_season_folders() else: results.append( _( "You tried saving an invalid normal naming config, not saving your naming settings" ) ) if ( self.isNamingValid( naming_anime_pattern, naming_anime_multi_ep, anime_type=naming_anime ) != "invalid" ): sickbeard.NAMING_ANIME_PATTERN = naming_anime_pattern sickbeard.NAMING_ANIME_MULTI_EP = try_int( naming_anime_multi_ep, NAMING_LIMITED_EXTEND_E_PREFIXED ) sickbeard.NAMING_ANIME = try_int(naming_anime, 3) sickbeard.NAMING_FORCE_FOLDERS = naming.check_force_season_folders() else: results.append( _( "You tried saving an invalid anime naming config, not saving your naming settings" ) ) if self.isNamingValid(naming_abd_pattern, None, abd=True) != "invalid": sickbeard.NAMING_ABD_PATTERN = naming_abd_pattern else: results.append( "You tried saving an invalid air-by-date naming config, not saving your air-by-date settings" ) if self.isNamingValid(naming_sports_pattern, None, sports=True) != "invalid": sickbeard.NAMING_SPORTS_PATTERN = naming_sports_pattern else: results.append( "You tried saving an invalid sports naming config, not saving your sports settings" ) sickbeard.save_config() if results: for x in results: logger.log(x, logger.WARNING) ui.notifications.error( _("Error(s) Saving Configuration"), "<br>\n".join(results) ) else: ui.notifications.message( _("Configuration Saved"), ek(os.path.join, sickbeard.CONFIG_FILE) ) return self.redirect("/config/postProcessing/")
def savePostProcessing( self, kodi_data=None, kodi_12plus_data=None, mediabrowser_data=None, sony_ps3_data=None, wdtv_data=None, tivo_data=None, mede8er_data=None, keep_processed_dir=None, process_method=None, processor_follow_symlinks=None, del_rar_contents=None, process_automatically=None, no_delete=None, rename_episodes=None, airdate_episodes=None, file_timestamp_timezone=None, unpack=None, unpack_dir=None, unrar_tool=None, alt_unrar_tool=None, move_associated_files=None, delete_non_associated_files=None, sync_files=None, postpone_if_sync_files=None, allowed_extensions=None, tv_download_dir=None, create_missing_show_dirs=None, add_shows_wo_dir=None, extra_scripts=None, nfo_rename=None, naming_pattern=None, naming_multi_ep=None, naming_custom_abd=None, naming_anime=None, naming_abd_pattern=None, naming_strip_year=None, naming_custom_sports=None, naming_sports_pattern=None, naming_custom_anime=None, naming_anime_pattern=None, naming_anime_multi_ep=None, autopostprocessor_frequency=None, use_icacls=None, ): results = [] if not config.change_tv_download_dir(tv_download_dir): results += [ "Unable to create directory " + ek(os.path.normpath, tv_download_dir) + ", dir not changed." ] config.change_postprocessor_frequency(autopostprocessor_frequency) config.change_process_automatically(process_automatically) sickbeard.USE_ICACLS = config.checkbox_to_value(use_icacls) config.change_unrar_tool(unrar_tool, alt_unrar_tool) unpack = try_int(unpack) if unpack == 1: sickbeard.UNPACK = int(self.isRarSupported() != "not supported") if sickbeard.UNPACK != 1: results.append(_("Unpacking Not Supported, disabling unpack setting")) else: sickbeard.UNPACK = unpack if not config.change_unpack_dir(unpack_dir): results += [ "Unable to change unpack directory to " + ek(os.path.normpath, unpack_dir) + ", check the logs." ] sickbeard.NO_DELETE = config.checkbox_to_value(no_delete) sickbeard.KEEP_PROCESSED_DIR = config.checkbox_to_value(keep_processed_dir) sickbeard.CREATE_MISSING_SHOW_DIRS = config.checkbox_to_value( create_missing_show_dirs ) sickbeard.ADD_SHOWS_WO_DIR = config.checkbox_to_value(add_shows_wo_dir) sickbeard.PROCESS_METHOD = process_method sickbeard.PROCESSOR_FOLLOW_SYMLINKS = config.checkbox_to_value( processor_follow_symlinks ) sickbeard.DELRARCONTENTS = config.checkbox_to_value(del_rar_contents) sickbeard.EXTRA_SCRIPTS = [x.strip() for x in extra_scripts.split("|") if x.strip()] sickbeard.RENAME_EPISODES = config.checkbox_to_value(rename_episodes) sickbeard.AIRDATE_EPISODES = config.checkbox_to_value(airdate_episodes) sickbeard.FILE_TIMESTAMP_TIMEZONE = file_timestamp_timezone sickbeard.MOVE_ASSOCIATED_FILES = config.checkbox_to_value(move_associated_files) sickbeard.DELETE_NON_ASSOCIATED_FILES = config.checkbox_to_value( delete_non_associated_files ) sickbeard.SYNC_FILES = sync_files sickbeard.POSTPONE_IF_SYNC_FILES = config.checkbox_to_value(postpone_if_sync_files) sickbeard.ALLOWED_EXTENSIONS = ",".join( {x.strip() for x in allowed_extensions.split(",") if x.strip()} ) sickbeard.NAMING_CUSTOM_ABD = config.checkbox_to_value(naming_custom_abd) sickbeard.NAMING_CUSTOM_SPORTS = config.checkbox_to_value(naming_custom_sports) sickbeard.NAMING_CUSTOM_ANIME = config.checkbox_to_value(naming_custom_anime) sickbeard.NAMING_STRIP_YEAR = config.checkbox_to_value(naming_strip_year) sickbeard.NFO_RENAME = config.checkbox_to_value(nfo_rename) sickbeard.METADATA_KODI = kodi_data sickbeard.METADATA_KODI_12PLUS = kodi_12plus_data sickbeard.METADATA_MEDIABROWSER = mediabrowser_data sickbeard.METADATA_PS3 = sony_ps3_data sickbeard.METADATA_WDTV = wdtv_data sickbeard.METADATA_TIVO = tivo_data sickbeard.METADATA_MEDE8ER = mede8er_data sickbeard.metadata_provider_dict["KODI"].set_config(sickbeard.METADATA_KODI) sickbeard.metadata_provider_dict["KODI 12+"].set_config( sickbeard.METADATA_KODI_12PLUS ) sickbeard.metadata_provider_dict["MediaBrowser"].set_config( sickbeard.METADATA_MEDIABROWSER ) sickbeard.metadata_provider_dict["Sony PS3"].set_config(sickbeard.METADATA_PS3) sickbeard.metadata_provider_dict["WDTV"].set_config(sickbeard.METADATA_WDTV) sickbeard.metadata_provider_dict["TIVO"].set_config(sickbeard.METADATA_TIVO) sickbeard.metadata_provider_dict["Mede8er"].set_config(sickbeard.METADATA_MEDE8ER) if ( self.isNamingValid(naming_pattern, naming_multi_ep, anime_type=naming_anime) != "invalid" ): sickbeard.NAMING_PATTERN = naming_pattern sickbeard.NAMING_MULTI_EP = int(naming_multi_ep) sickbeard.NAMING_ANIME = int(naming_anime) sickbeard.NAMING_FORCE_FOLDERS = naming.check_force_season_folders() else: if int(naming_anime or 0) in [1, 2]: results.append( _( "You tried saving an invalid anime naming config, not saving your naming settings" ) ) else: results.append( _( "You tried saving an invalid naming config, not saving your naming settings" ) ) if ( self.isNamingValid( naming_anime_pattern, naming_anime_multi_ep, anime_type=naming_anime ) != "invalid" ): sickbeard.NAMING_ANIME_PATTERN = naming_anime_pattern sickbeard.NAMING_ANIME_MULTI_EP = int(naming_anime_multi_ep) sickbeard.NAMING_ANIME = int(naming_anime) sickbeard.NAMING_FORCE_FOLDERS = naming.check_force_season_folders() else: if int(naming_anime or 0) in [1, 2]: results.append( _( "You tried saving an invalid anime naming config, not saving your naming settings" ) ) else: results.append( _( "You tried saving an invalid naming config, not saving your naming settings" ) ) if self.isNamingValid(naming_abd_pattern, None, abd=True) != "invalid": sickbeard.NAMING_ABD_PATTERN = naming_abd_pattern else: results.append( "You tried saving an invalid air-by-date naming config, not saving your air-by-date settings" ) if self.isNamingValid(naming_sports_pattern, None, sports=True) != "invalid": sickbeard.NAMING_SPORTS_PATTERN = naming_sports_pattern else: results.append( "You tried saving an invalid sports naming config, not saving your sports settings" ) sickbeard.save_config() if len(results) > 0: for x in results: logger.log(x, logger.WARNING) ui.notifications.error( _("Error(s) Saving Configuration"), "<br>\n".join(results) ) else: ui.notifications.message( _("Configuration Saved"), ek(os.path.join, sickbeard.CONFIG_FILE) ) return self.redirect("/config/postProcessing/")
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def isNamingValid(pattern=None, multi=None, abd=False, sports=False, anime_type=None): if not pattern: return "invalid" # air by date shows just need one check, we don't need to worry about season folders if abd: is_valid = naming.check_valid_abd_naming(pattern) require_season_folders = False # sport shows just need one check, we don't need to worry about season folders elif sports: is_valid = naming.check_valid_sports_naming(pattern) require_season_folders = False else: # check validity of single and multi ep cases for the whole path is_valid = naming.check_valid_naming( pattern, try_int(multi, None), try_int(anime_type, None) ) # check validity of single and multi ep cases for only the file name require_season_folders = naming.check_force_season_folders( pattern, try_int(multi, None), try_int(anime_type, None) ) if is_valid and not require_season_folders: return "valid" elif is_valid and require_season_folders: return "seasonfolders" else: return "invalid"
def isNamingValid(pattern=None, multi=None, abd=False, sports=False, anime_type=None): if not pattern: return "invalid" if multi is not None: multi = int(multi) if anime_type is not None: anime_type = int(anime_type) # air by date shows just need one check, we don't need to worry about season folders if abd: is_valid = naming.check_valid_abd_naming(pattern) require_season_folders = False # sport shows just need one check, we don't need to worry about season folders elif sports: is_valid = naming.check_valid_sports_naming(pattern) require_season_folders = False else: # check validity of single and multi ep cases for the whole path is_valid = naming.check_valid_naming(pattern, multi, anime_type) # check validity of single and multi ep cases for only the file name require_season_folders = naming.check_force_season_folders( pattern, multi, anime_type ) if is_valid and not require_season_folders: return "valid" elif is_valid and require_season_folders: return "seasonfolders" else: return "invalid"
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def savePostProcessing( self, kodi_data=None, kodi_12plus_data=None, mediabrowser_data=None, sony_ps3_data=None, wdtv_data=None, tivo_data=None, mede8er_data=None, keep_processed_dir=None, process_method=None, del_rar_contents=None, process_automatically=None, no_delete=None, rename_episodes=None, airdate_episodes=None, file_timestamp_timezone=None, unpack=None, move_associated_files=None, sync_files=None, postpone_if_sync_files=None, allowed_extensions=None, tv_download_dir=None, create_missing_show_dirs=None, add_shows_wo_dir=None, extra_scripts=None, nfo_rename=None, naming_pattern=None, naming_multi_ep=None, naming_custom_abd=None, naming_anime=None, naming_abd_pattern=None, naming_strip_year=None, naming_custom_sports=None, naming_sports_pattern=None, naming_custom_anime=None, naming_anime_pattern=None, naming_anime_multi_ep=None, autopostprocesser_frequency=None, ): results = [] if not config.change_TV_DOWNLOAD_DIR(tv_download_dir): results += [ "Unable to create directory " + ek(os.path.normpath, tv_download_dir) + ", dir not changed." ] config.change_AUTOPOSTPROCESSER_FREQUENCY(autopostprocesser_frequency) config.change_PROCESS_AUTOMATICALLY(process_automatically) if unpack: if self.isRarSupported() != "not supported": sickbeard.UNPACK = config.checkbox_to_value(unpack) else: sickbeard.UNPACK = 0 results.append(_("Unpacking Not Supported, disabling unpack setting")) else: sickbeard.UNPACK = config.checkbox_to_value(unpack) sickbeard.NO_DELETE = config.checkbox_to_value(no_delete) sickbeard.KEEP_PROCESSED_DIR = config.checkbox_to_value(keep_processed_dir) sickbeard.CREATE_MISSING_SHOW_DIRS = config.checkbox_to_value( create_missing_show_dirs ) sickbeard.ADD_SHOWS_WO_DIR = config.checkbox_to_value(add_shows_wo_dir) sickbeard.PROCESS_METHOD = process_method sickbeard.DELRARCONTENTS = config.checkbox_to_value(del_rar_contents) sickbeard.EXTRA_SCRIPTS = [x.strip() for x in extra_scripts.split("|") if x.strip()] sickbeard.RENAME_EPISODES = config.checkbox_to_value(rename_episodes) sickbeard.AIRDATE_EPISODES = config.checkbox_to_value(airdate_episodes) sickbeard.FILE_TIMESTAMP_TIMEZONE = file_timestamp_timezone sickbeard.MOVE_ASSOCIATED_FILES = config.checkbox_to_value(move_associated_files) sickbeard.SYNC_FILES = sync_files sickbeard.POSTPONE_IF_SYNC_FILES = config.checkbox_to_value(postpone_if_sync_files) sickbeard.ALLOWED_EXTENSIONS = ",".join( {x.strip() for x in allowed_extensions.split(",") if x.strip()} ) sickbeard.NAMING_CUSTOM_ABD = config.checkbox_to_value(naming_custom_abd) sickbeard.NAMING_CUSTOM_SPORTS = config.checkbox_to_value(naming_custom_sports) sickbeard.NAMING_CUSTOM_ANIME = config.checkbox_to_value(naming_custom_anime) sickbeard.NAMING_STRIP_YEAR = config.checkbox_to_value(naming_strip_year) sickbeard.NFO_RENAME = config.checkbox_to_value(nfo_rename) sickbeard.METADATA_KODI = kodi_data sickbeard.METADATA_KODI_12PLUS = kodi_12plus_data sickbeard.METADATA_MEDIABROWSER = mediabrowser_data sickbeard.METADATA_PS3 = sony_ps3_data sickbeard.METADATA_WDTV = wdtv_data sickbeard.METADATA_TIVO = tivo_data sickbeard.METADATA_MEDE8ER = mede8er_data sickbeard.metadata_provider_dict["KODI"].set_config(sickbeard.METADATA_KODI) sickbeard.metadata_provider_dict["KODI 12+"].set_config( sickbeard.METADATA_KODI_12PLUS ) sickbeard.metadata_provider_dict["MediaBrowser"].set_config( sickbeard.METADATA_MEDIABROWSER ) sickbeard.metadata_provider_dict["Sony PS3"].set_config(sickbeard.METADATA_PS3) sickbeard.metadata_provider_dict["WDTV"].set_config(sickbeard.METADATA_WDTV) sickbeard.metadata_provider_dict["TIVO"].set_config(sickbeard.METADATA_TIVO) sickbeard.metadata_provider_dict["Mede8er"].set_config(sickbeard.METADATA_MEDE8ER) if ( self.isNamingValid(naming_pattern, naming_multi_ep, anime_type=naming_anime) != "invalid" ): sickbeard.NAMING_PATTERN = naming_pattern sickbeard.NAMING_MULTI_EP = int(naming_multi_ep) sickbeard.NAMING_ANIME = int(naming_anime) sickbeard.NAMING_FORCE_FOLDERS = naming.check_force_season_folders() else: if int(naming_anime or 0) in [1, 2]: results.append( _( "You tried saving an invalid anime naming config, not saving your naming settings" ) ) else: results.append( _( "You tried saving an invalid naming config, not saving your naming settings" ) ) if ( self.isNamingValid( naming_anime_pattern, naming_anime_multi_ep, anime_type=naming_anime ) != "invalid" ): sickbeard.NAMING_ANIME_PATTERN = naming_anime_pattern sickbeard.NAMING_ANIME_MULTI_EP = int(naming_anime_multi_ep) sickbeard.NAMING_ANIME = int(naming_anime) sickbeard.NAMING_FORCE_FOLDERS = naming.check_force_season_folders() else: if int(naming_anime or 0) in [1, 2]: results.append( _( "You tried saving an invalid anime naming config, not saving your naming settings" ) ) else: results.append( _( "You tried saving an invalid naming config, not saving your naming settings" ) ) if self.isNamingValid(naming_abd_pattern, None, abd=True) != "invalid": sickbeard.NAMING_ABD_PATTERN = naming_abd_pattern else: results.append( "You tried saving an invalid air-by-date naming config, not saving your air-by-date settings" ) if self.isNamingValid(naming_sports_pattern, None, sports=True) != "invalid": sickbeard.NAMING_SPORTS_PATTERN = naming_sports_pattern else: results.append( "You tried saving an invalid sports naming config, not saving your sports settings" ) sickbeard.save_config() if len(results) > 0: for x in results: logger.log(x, logger.WARNING) ui.notifications.error( _("Error(s) Saving Configuration"), "<br>\n".join(results) ) else: ui.notifications.message( _("Configuration Saved"), ek(os.path.join, sickbeard.CONFIG_FILE) ) return self.redirect("/config/postProcessing/")
def savePostProcessing( self, kodi_data=None, kodi_12plus_data=None, mediabrowser_data=None, sony_ps3_data=None, wdtv_data=None, tivo_data=None, mede8er_data=None, keep_processed_dir=None, process_method=None, del_rar_contents=None, process_automatically=None, no_delete=None, rename_episodes=None, airdate_episodes=None, file_timestamp_timezone=None, unpack=None, move_associated_files=None, sync_files=None, postpone_if_sync_files=None, allowed_extensions=None, tv_download_dir=None, create_missing_show_dirs=None, add_shows_wo_dir=None, extra_scripts=None, nfo_rename=None, naming_pattern=None, naming_multi_ep=None, naming_custom_abd=None, naming_anime=None, naming_abd_pattern=None, naming_strip_year=None, naming_custom_sports=None, naming_sports_pattern=None, naming_custom_anime=None, naming_anime_pattern=None, naming_anime_multi_ep=None, autopostprocesser_frequency=None, ): results = [] if not config.change_TV_DOWNLOAD_DIR(tv_download_dir): results += [ "Unable to create directory " + ek(os.path.normpath, tv_download_dir) + ", dir not changed." ] config.change_AUTOPOSTPROCESSER_FREQUENCY(autopostprocesser_frequency) config.change_PROCESS_AUTOMATICALLY(process_automatically) if unpack: if self.isRarSupported() != "not supported": sickbeard.UNPACK = config.checkbox_to_value(unpack) else: sickbeard.UNPACK = 0 results.append(_("Unpacking Not Supported, disabling unpack setting")) else: sickbeard.UNPACK = config.checkbox_to_value(unpack) sickbeard.NO_DELETE = config.checkbox_to_value(no_delete) sickbeard.KEEP_PROCESSED_DIR = config.checkbox_to_value(keep_processed_dir) sickbeard.CREATE_MISSING_SHOW_DIRS = config.checkbox_to_value( create_missing_show_dirs ) sickbeard.ADD_SHOWS_WO_DIR = config.checkbox_to_value(add_shows_wo_dir) sickbeard.PROCESS_METHOD = process_method sickbeard.DELRARCONTENTS = config.checkbox_to_value(del_rar_contents) sickbeard.EXTRA_SCRIPTS = [x.strip() for x in extra_scripts.split("|") if x.strip()] sickbeard.RENAME_EPISODES = config.checkbox_to_value(rename_episodes) sickbeard.AIRDATE_EPISODES = config.checkbox_to_value(airdate_episodes) sickbeard.FILE_TIMESTAMP_TIMEZONE = file_timestamp_timezone sickbeard.MOVE_ASSOCIATED_FILES = config.checkbox_to_value(move_associated_files) sickbeard.SYNC_FILES = sync_files sickbeard.POSTPONE_IF_SYNC_FILES = config.checkbox_to_value(postpone_if_sync_files) sickbeard.ALLOWED_EXTENSIONS = ",".join( {x.strip() for x in allowed_extensions.split(",") if x.strip()} ) sickbeard.NAMING_CUSTOM_ABD = config.checkbox_to_value(naming_custom_abd) sickbeard.NAMING_CUSTOM_SPORTS = config.checkbox_to_value(naming_custom_sports) sickbeard.NAMING_CUSTOM_ANIME = config.checkbox_to_value(naming_custom_anime) sickbeard.NAMING_STRIP_YEAR = config.checkbox_to_value(naming_strip_year) sickbeard.NFO_RENAME = config.checkbox_to_value(nfo_rename) sickbeard.METADATA_KODI = kodi_data sickbeard.METADATA_KODI_12PLUS = kodi_12plus_data sickbeard.METADATA_MEDIABROWSER = mediabrowser_data sickbeard.METADATA_PS3 = sony_ps3_data sickbeard.METADATA_WDTV = wdtv_data sickbeard.METADATA_TIVO = tivo_data sickbeard.METADATA_MEDE8ER = mede8er_data sickbeard.metadata_provider_dict["KODI"].set_config(sickbeard.METADATA_KODI) sickbeard.metadata_provider_dict["KODI 12+"].set_config( sickbeard.METADATA_KODI_12PLUS ) sickbeard.metadata_provider_dict["MediaBrowser"].set_config( sickbeard.METADATA_MEDIABROWSER ) sickbeard.metadata_provider_dict["Sony PS3"].set_config(sickbeard.METADATA_PS3) sickbeard.metadata_provider_dict["WDTV"].set_config(sickbeard.METADATA_WDTV) sickbeard.metadata_provider_dict["TIVO"].set_config(sickbeard.METADATA_TIVO) sickbeard.metadata_provider_dict["Mede8er"].set_config(sickbeard.METADATA_MEDE8ER) if ( self.isNamingValid(naming_pattern, naming_multi_ep, anime_type=naming_anime) != "invalid" ): sickbeard.NAMING_PATTERN = naming_pattern sickbeard.NAMING_MULTI_EP = int(naming_multi_ep) sickbeard.NAMING_ANIME = int(naming_anime) sickbeard.NAMING_FORCE_FOLDERS = naming.check_force_season_folders() else: if int(naming_anime) in [1, 2]: results.append( _( "You tried saving an invalid anime naming config, not saving your naming settings" ) ) else: results.append( _( "You tried saving an invalid naming config, not saving your naming settings" ) ) if ( self.isNamingValid( naming_anime_pattern, naming_anime_multi_ep, anime_type=naming_anime ) != "invalid" ): sickbeard.NAMING_ANIME_PATTERN = naming_anime_pattern sickbeard.NAMING_ANIME_MULTI_EP = int(naming_anime_multi_ep) sickbeard.NAMING_ANIME = int(naming_anime) sickbeard.NAMING_FORCE_FOLDERS = naming.check_force_season_folders() else: if int(naming_anime) in [1, 2]: results.append( _( "You tried saving an invalid anime naming config, not saving your naming settings" ) ) else: results.append( _( "You tried saving an invalid naming config, not saving your naming settings" ) ) if self.isNamingValid(naming_abd_pattern, None, abd=True) != "invalid": sickbeard.NAMING_ABD_PATTERN = naming_abd_pattern else: results.append( "You tried saving an invalid air-by-date naming config, not saving your air-by-date settings" ) if self.isNamingValid(naming_sports_pattern, None, sports=True) != "invalid": sickbeard.NAMING_SPORTS_PATTERN = naming_sports_pattern else: results.append( "You tried saving an invalid sports naming config, not saving your sports settings" ) sickbeard.save_config() if len(results) > 0: for x in results: logger.log(x, logger.WARNING) ui.notifications.error( _("Error(s) Saving Configuration"), "<br>\n".join(results) ) else: ui.notifications.message( _("Configuration Saved"), ek(os.path.join, sickbeard.CONFIG_FILE) ) return self.redirect("/config/postProcessing/")
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def process(self): # pylint: disable=too-many-return-statements, too-many-locals, too-many-branches, too-many-statements """ Post-process a given file :return: True on success, False on failure """ self._log("Processing " + self.file_path + " (" + str(self.nzb_name) + ")") if ek(os.path.isdir, self.file_path): self._log("File {0} seems to be a directory".format(self.file_path)) return False if not ek(os.path.exists, self.file_path): self._log("File {0} doesn't exist, did unrar fail?".format(self.file_path)) return False for ignore_file in self.IGNORED_FILESTRINGS: if ignore_file in self.file_path: self._log("File {0} is ignored type, skipping".format(self.file_path)) return False # reset per-file stuff self.in_history = False # reset the anidb episode object self.anidbEpisode = None # try to find the file info (show, season, episodes, quality, version) = self._find_info() if not show: self._log( "This show isn't in your list, you need to add it to SR before post-processing an episode" ) raise EpisodePostProcessingFailedException() elif season is None or not episodes: self._log( "Not enough information to determine what episode this is. Quitting post-processing" ) return False # retrieve/create the corresponding TVEpisode objects ep_obj = self._get_ep_obj(show, season, episodes) _, old_ep_quality = common.Quality.splitCompositeStatus(ep_obj.status) # get the quality of the episode we're processing if quality and not common.Quality.qualityStrings[quality] == "Unknown": self._log( "Snatch history had a quality in it, using that: " + common.Quality.qualityStrings[quality], logger.DEBUG, ) new_ep_quality = quality else: new_ep_quality = self._get_quality(ep_obj) logger.log( "Quality of the episode we're processing: {0}".format( common.Quality.qualityStrings[new_ep_quality] ), logger.DEBUG, ) # see if this is a priority download (is it snatched, in history, PROPER, or BEST) priority_download = self._is_priority(ep_obj, new_ep_quality) self._log("Is ep a priority download: " + str(priority_download), logger.DEBUG) # get the version of the episode we're processing if version: self._log( "Snatch history had a version in it, using that: v" + str(version), logger.DEBUG, ) new_ep_version = version else: new_ep_version = -1 # check for an existing file existing_file_status = self._checkForExistingFile(ep_obj.location) if not priority_download: if existing_file_status == PostProcessor.EXISTS_SAME: self._log( "File exists and new file is same size, pretending we did something" ) return True if ( new_ep_quality <= old_ep_quality and old_ep_quality != common.Quality.UNKNOWN and existing_file_status != PostProcessor.DOESNT_EXIST ): if self.is_proper and new_ep_quality == old_ep_quality: self._log("New file is a proper/repack, marking it safe to replace") else: _, preferred_qualities = common.Quality.splitQuality(int(show.quality)) if new_ep_quality not in preferred_qualities: self._log( "File exists and new file quality is not in a preferred quality list, marking it unsafe to replace" ) return False # Check if the processed file season is already in our indexer. If not, the file is most probably mislabled/fake and will be skipped # Only proceed if the file season is > 0 if int(ep_obj.season) > 0: main_db_con = db.DBConnection() max_season = main_db_con.select( "SELECT MAX(season) FROM tv_episodes WHERE showid = ? and indexer = ?", [show.indexerid, show.indexer], ) if not isinstance(max_season[0][0], int) or max_season[0][0] < 0: self._log( "File has season {0}, while the database does not have any known seasons yet. " "Try forcing a full update on the show and process this file again. " "The file may be incorrectly labeled or fake, aborting.".format( ep_obj.season ) ) return False # If the file season (ep_obj.season) is bigger than the indexer season (max_season[0][0]), skip the file if int(ep_obj.season) > max_season[0][0]: self._log( "File has season {0}, while the indexer is on season {1}. " "Try forcing a full update on the show and process this file again. " "The file may be incorrectly labeled or fake, aborting.".format( ep_obj.season, max_season[0][0] ) ) return False # if the file is priority then we're going to replace it even if it exists else: self._log( "This download is marked a priority download so I'm going to replace an existing file if I find one" ) # try to find out if we have enough space to perform the copy or move action. if not helpers.isFileLocked(self.file_path, False): if not verify_freespace( self.file_path, ep_obj.show._location, [ep_obj] + ep_obj.relatedEps ): # pylint: disable=protected-access self._log("Not enough space to continue PP, exiting", logger.WARNING) return False else: self._log( "Unable to determine needed filespace as the source file is locked for access" ) # delete the existing file (and company) for cur_ep in [ep_obj] + ep_obj.relatedEps: try: self._delete(cur_ep.location, associated_files=True) # clean up any left over folders if cur_ep.location: helpers.delete_empty_folders( ek(os.path.dirname, cur_ep.location), keep_dir=ep_obj.show._location ) # pylint: disable=protected-access except (OSError, IOError): raise EpisodePostProcessingFailedException( "Unable to delete the existing files" ) # set the status of the episodes # for curEp in [ep_obj] + ep_obj.relatedEps: # curEp.status = common.Quality.compositeStatus(common.SNATCHED, new_ep_quality) # if the show directory doesn't exist then make it if allowed if ( not ek(os.path.isdir, ep_obj.show._location) and sickbeard.CREATE_MISSING_SHOW_DIRS ): # pylint: disable=protected-access self._log("Show directory doesn't exist, creating it", logger.DEBUG) try: ek(os.mkdir, ep_obj.show._location) # pylint: disable=protected-access helpers.chmodAsParent(ep_obj.show._location) # pylint: disable=protected-access # do the library update for synoindex notifiers.synoindex_notifier.addFolder(ep_obj.show._location) # pylint: disable=protected-access except (OSError, IOError): raise EpisodePostProcessingFailedException( "Unable to create the show directory: " + ep_obj.show._location ) # pylint: disable=protected-access # get metadata for the show (but not episode because it hasn't been fully processed) ep_obj.show.writeMetadata(True) # update the ep info before we rename so the quality & release name go into the name properly sql_l = [] for cur_ep in [ep_obj] + ep_obj.relatedEps: with cur_ep.lock: if self.release_name: self._log("Found release name " + self.release_name, logger.DEBUG) cur_ep.release_name = self.release_name elif self.file_name: # If we can't get the release name we expect, save the original release name instead self._log("Using original release name " + self.file_name, logger.DEBUG) cur_ep.release_name = self.file_name else: cur_ep.release_name = "" cur_ep.status = common.Quality.compositeStatus( common.DOWNLOADED, new_ep_quality ) cur_ep.subtitles = "" cur_ep.subtitles_searchcount = 0 cur_ep.subtitles_lastsearch = "0001-01-01 00:00:00" cur_ep.is_proper = self.is_proper cur_ep.version = new_ep_version if self.release_group: cur_ep.release_group = self.release_group else: cur_ep.release_group = "" sql_l.append(cur_ep.get_sql()) # Just want to keep this consistent for failed handling right now releaseName = show_name_helpers.determineReleaseName( self.folder_path, self.nzb_name ) if releaseName is not None: failed_history.logSuccess(releaseName) else: self._log("Couldn't find release in snatch history", logger.WARNING) # find the destination folder try: proper_path = ep_obj.proper_path() proper_absolute_path = ek(os.path.join, ep_obj.show.location, proper_path) dest_path = ek(os.path.dirname, proper_absolute_path) except ShowDirectoryNotFoundException: raise EpisodePostProcessingFailedException( "Unable to post-process an episode if the show dir doesn't exist, quitting" ) self._log("Destination folder for this episode: " + dest_path, logger.DEBUG) # create any folders we need helpers.make_dirs(dest_path) # figure out the base name of the resulting episode file if sickbeard.RENAME_EPISODES: orig_extension = self.file_name.rpartition(".")[-1] new_base_name = ek(os.path.basename, proper_path) new_file_name = new_base_name + "." + orig_extension else: # if we're not renaming then there's no new base name, we'll just use the existing name new_base_name = None new_file_name = self.file_name # add to anidb if ep_obj.show.is_anime and sickbeard.ANIDB_USE_MYLIST: self._add_to_anidb_mylist(self.file_path) try: # move the episode and associated files to the show dir if self.process_method == "copy": if helpers.isFileLocked(self.file_path, False): raise EpisodePostProcessingFailedException("File is locked for reading") self._copy( self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES, sickbeard.USE_SUBTITLES and ep_obj.show.subtitles, ) elif self.process_method == "move": if helpers.isFileLocked(self.file_path, True): raise EpisodePostProcessingFailedException( "File is locked for reading/writing" ) self._move( self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES, sickbeard.USE_SUBTITLES and ep_obj.show.subtitles, ) elif self.process_method == "hardlink": self._hardlink( self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES, sickbeard.USE_SUBTITLES and ep_obj.show.subtitles, ) elif self.process_method == "symlink": if helpers.isFileLocked(self.file_path, True): raise EpisodePostProcessingFailedException( "File is locked for reading/writing" ) self._moveAndSymlink( self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES, sickbeard.USE_SUBTITLES and ep_obj.show.subtitles, ) else: logger.log( "Unknown process method: " + str(self.process_method), logger.ERROR ) raise EpisodePostProcessingFailedException( "Unable to move the files to their new home" ) except (OSError, IOError): raise EpisodePostProcessingFailedException( "Unable to move the files to their new home" ) for cur_ep in [ep_obj] + ep_obj.relatedEps: with cur_ep.lock: cur_ep.location = ek(os.path.join, dest_path, new_file_name) # download subtitles if sickbeard.USE_SUBTITLES and ep_obj.show.subtitles: cur_ep.refreshSubtitles() cur_ep.download_subtitles(force=True) sql_l.append(cur_ep.get_sql()) # now that processing has finished, we can put the info in the DB. If we do it earlier, then when processing fails, it won't try again. if sql_l: main_db_con = db.DBConnection() main_db_con.mass_action(sql_l) ep_obj.airdateModifyStamp() # generate nfo/tbn try: ep_obj.createMetaFiles() except Exception: logger.log( "Could not create/update meta files. Continuing with postProcessing..." ) # log it to history history.logDownload( ep_obj, self.file_path, new_ep_quality, self.release_group, new_ep_version ) # If any notification fails, don't stop postProcessor try: # send notifications notifiers.notify_download(ep_obj._format_pattern("%SN - %Sx%0E - %EN - %QN")) # pylint: disable=protected-access # do the library update for KODI notifiers.kodi_notifier.update_library(ep_obj.show.name) # do the library update for Plex notifiers.plex_notifier.update_library(ep_obj) # do the library update for EMBY notifiers.emby_notifier.update_library(ep_obj.show) # do the library update for NMJ # nmj_notifier kicks off its library update when the notify_download is issued (inside notifiers) # do the library update for Synology Indexer notifiers.synoindex_notifier.addFile(ep_obj.location) # do the library update for pyTivo notifiers.pytivo_notifier.update_library(ep_obj) # do the library update for Trakt notifiers.trakt_notifier.update_library(ep_obj) except Exception: logger.log( "Some notifications could not be sent. Continuing with postProcessing..." ) self._run_extra_scripts(ep_obj) return True
def process(self): # pylint: disable=too-many-return-statements, too-many-locals, too-many-branches, too-many-statements """ Post-process a given file :return: True on success, False on failure """ self._log("Processing " + self.file_path + " (" + str(self.nzb_name) + ")") if ek(os.path.isdir, self.file_path): self._log("File {0} seems to be a directory".format(self.file_path)) return False if not ek(os.path.exists, self.file_path): self._log("File {0} doesn't exist, did unrar fail?".format(self.file_path)) return False for ignore_file in self.IGNORED_FILESTRINGS: if ignore_file in self.file_path: self._log("File {0} is ignored type, skipping".format(self.file_path)) return False # reset per-file stuff self.in_history = False # reset the anidb episode object self.anidbEpisode = None # try to find the file info (show, season, episodes, quality, version) = self._find_info() if not show: self._log( "This show isn't in your list, you need to add it to SR before post-processing an episode" ) raise EpisodePostProcessingFailedException() elif season is None or not episodes: self._log( "Not enough information to determine what episode this is. Quitting post-processing" ) return False # retrieve/create the corresponding TVEpisode objects ep_obj = self._get_ep_obj(show, season, episodes) _, old_ep_quality = common.Quality.splitCompositeStatus(ep_obj.status) # get the quality of the episode we're processing if quality and not common.Quality.qualityStrings[quality] == "Unknown": self._log( "Snatch history had a quality in it, using that: " + common.Quality.qualityStrings[quality], logger.DEBUG, ) new_ep_quality = quality else: new_ep_quality = self._get_quality(ep_obj) logger.log( "Quality of the episode we're processing: {0}".format( common.Quality.qualityStrings[new_ep_quality] ), logger.DEBUG, ) # see if this is a priority download (is it snatched, in history, PROPER, or BEST) priority_download = self._is_priority(ep_obj, new_ep_quality) self._log("Is ep a priority download: " + str(priority_download), logger.DEBUG) # get the version of the episode we're processing if version: self._log( "Snatch history had a version in it, using that: v" + str(version), logger.DEBUG, ) new_ep_version = version else: new_ep_version = -1 # check for an existing file existing_file_status = self._checkForExistingFile(ep_obj.location) if not priority_download: if existing_file_status == PostProcessor.EXISTS_SAME: self._log( "File exists and new file is same size, pretending we did something" ) return True if ( new_ep_quality <= old_ep_quality and old_ep_quality != common.Quality.UNKNOWN and existing_file_status != PostProcessor.DOESNT_EXIST ): if self.is_proper and new_ep_quality == old_ep_quality: self._log("New file is a proper/repack, marking it safe to replace") else: _, preferred_qualities = common.Quality.splitQuality(int(show.quality)) if new_ep_quality not in preferred_qualities: self._log( "File exists and new file quality is not in a preferred quality list, marking it unsafe to replace" ) return False # Check if the processed file season is already in our indexer. If not, the file is most probably mislabled/fake and will be skipped # Only proceed if the file season is > 0 if int(ep_obj.season) > 0: main_db_con = db.DBConnection() max_season = main_db_con.select( "SELECT MAX(season) FROM tv_episodes WHERE showid = ? and indexer = ?", [show.indexerid, show.indexer], ) # If the file season (ep_obj.season) is bigger than the indexer season (max_season[0][0]), skip the file if int(ep_obj.season) > int(max_season[0][0]): self._log( "File has season {0}, while the indexer is on season {1}. The file may be incorrectly labeled or fake, aborting.".format( str(ep_obj.season), str(max_season[0][0]) ) ) return False # if the file is priority then we're going to replace it even if it exists else: self._log( "This download is marked a priority download so I'm going to replace an existing file if I find one" ) # try to find out if we have enough space to perform the copy or move action. if not helpers.isFileLocked(self.file_path, False): if not verify_freespace( self.file_path, ep_obj.show._location, [ep_obj] + ep_obj.relatedEps ): # pylint: disable=protected-access self._log("Not enough space to continue PP, exiting", logger.WARNING) return False else: self._log( "Unable to determine needed filespace as the source file is locked for access" ) # delete the existing file (and company) for cur_ep in [ep_obj] + ep_obj.relatedEps: try: self._delete(cur_ep.location, associated_files=True) # clean up any left over folders if cur_ep.location: helpers.delete_empty_folders( ek(os.path.dirname, cur_ep.location), keep_dir=ep_obj.show._location ) # pylint: disable=protected-access except (OSError, IOError): raise EpisodePostProcessingFailedException( "Unable to delete the existing files" ) # set the status of the episodes # for curEp in [ep_obj] + ep_obj.relatedEps: # curEp.status = common.Quality.compositeStatus(common.SNATCHED, new_ep_quality) # if the show directory doesn't exist then make it if allowed if ( not ek(os.path.isdir, ep_obj.show._location) and sickbeard.CREATE_MISSING_SHOW_DIRS ): # pylint: disable=protected-access self._log("Show directory doesn't exist, creating it", logger.DEBUG) try: ek(os.mkdir, ep_obj.show._location) # pylint: disable=protected-access helpers.chmodAsParent(ep_obj.show._location) # pylint: disable=protected-access # do the library update for synoindex notifiers.synoindex_notifier.addFolder(ep_obj.show._location) # pylint: disable=protected-access except (OSError, IOError): raise EpisodePostProcessingFailedException( "Unable to create the show directory: " + ep_obj.show._location ) # pylint: disable=protected-access # get metadata for the show (but not episode because it hasn't been fully processed) ep_obj.show.writeMetadata(True) # update the ep info before we rename so the quality & release name go into the name properly sql_l = [] for cur_ep in [ep_obj] + ep_obj.relatedEps: with cur_ep.lock: if self.release_name: self._log("Found release name " + self.release_name, logger.DEBUG) cur_ep.release_name = self.release_name elif self.file_name: # If we can't get the release name we expect, save the original release name instead self._log("Using original release name " + self.file_name, logger.DEBUG) cur_ep.release_name = self.file_name else: cur_ep.release_name = "" cur_ep.status = common.Quality.compositeStatus( common.DOWNLOADED, new_ep_quality ) cur_ep.subtitles = "" cur_ep.subtitles_searchcount = 0 cur_ep.subtitles_lastsearch = "0001-01-01 00:00:00" cur_ep.is_proper = self.is_proper cur_ep.version = new_ep_version if self.release_group: cur_ep.release_group = self.release_group else: cur_ep.release_group = "" sql_l.append(cur_ep.get_sql()) # Just want to keep this consistent for failed handling right now releaseName = show_name_helpers.determineReleaseName( self.folder_path, self.nzb_name ) if releaseName is not None: failed_history.logSuccess(releaseName) else: self._log("Couldn't find release in snatch history", logger.WARNING) # find the destination folder try: proper_path = ep_obj.proper_path() proper_absolute_path = ek(os.path.join, ep_obj.show.location, proper_path) dest_path = ek(os.path.dirname, proper_absolute_path) except ShowDirectoryNotFoundException: raise EpisodePostProcessingFailedException( "Unable to post-process an episode if the show dir doesn't exist, quitting" ) self._log("Destination folder for this episode: " + dest_path, logger.DEBUG) # create any folders we need helpers.make_dirs(dest_path) # figure out the base name of the resulting episode file if sickbeard.RENAME_EPISODES: orig_extension = self.file_name.rpartition(".")[-1] new_base_name = ek(os.path.basename, proper_path) new_file_name = new_base_name + "." + orig_extension else: # if we're not renaming then there's no new base name, we'll just use the existing name new_base_name = None new_file_name = self.file_name # add to anidb if ep_obj.show.is_anime and sickbeard.ANIDB_USE_MYLIST: self._add_to_anidb_mylist(self.file_path) try: # move the episode and associated files to the show dir if self.process_method == "copy": if helpers.isFileLocked(self.file_path, False): raise EpisodePostProcessingFailedException("File is locked for reading") self._copy( self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES, sickbeard.USE_SUBTITLES and ep_obj.show.subtitles, ) elif self.process_method == "move": if helpers.isFileLocked(self.file_path, True): raise EpisodePostProcessingFailedException( "File is locked for reading/writing" ) self._move( self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES, sickbeard.USE_SUBTITLES and ep_obj.show.subtitles, ) elif self.process_method == "hardlink": self._hardlink( self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES, sickbeard.USE_SUBTITLES and ep_obj.show.subtitles, ) elif self.process_method == "symlink": if helpers.isFileLocked(self.file_path, True): raise EpisodePostProcessingFailedException( "File is locked for reading/writing" ) self._moveAndSymlink( self.file_path, dest_path, new_base_name, sickbeard.MOVE_ASSOCIATED_FILES, sickbeard.USE_SUBTITLES and ep_obj.show.subtitles, ) else: logger.log( "Unknown process method: " + str(self.process_method), logger.ERROR ) raise EpisodePostProcessingFailedException( "Unable to move the files to their new home" ) except (OSError, IOError): raise EpisodePostProcessingFailedException( "Unable to move the files to their new home" ) for cur_ep in [ep_obj] + ep_obj.relatedEps: with cur_ep.lock: cur_ep.location = ek(os.path.join, dest_path, new_file_name) # download subtitles if sickbeard.USE_SUBTITLES and ep_obj.show.subtitles: cur_ep.refreshSubtitles() cur_ep.download_subtitles(force=True) sql_l.append(cur_ep.get_sql()) # now that processing has finished, we can put the info in the DB. If we do it earlier, then when processing fails, it won't try again. if sql_l: main_db_con = db.DBConnection() main_db_con.mass_action(sql_l) ep_obj.airdateModifyStamp() # generate nfo/tbn try: ep_obj.createMetaFiles() except Exception: logger.log( "Could not create/update meta files. Continuing with postProcessing..." ) # log it to history history.logDownload( ep_obj, self.file_path, new_ep_quality, self.release_group, new_ep_version ) # If any notification fails, don't stop postProcessor try: # send notifications notifiers.notify_download(ep_obj._format_pattern("%SN - %Sx%0E - %EN - %QN")) # pylint: disable=protected-access # do the library update for KODI notifiers.kodi_notifier.update_library(ep_obj.show.name) # do the library update for Plex notifiers.plex_notifier.update_library(ep_obj) # do the library update for EMBY notifiers.emby_notifier.update_library(ep_obj.show) # do the library update for NMJ # nmj_notifier kicks off its library update when the notify_download is issued (inside notifiers) # do the library update for Synology Indexer notifiers.synoindex_notifier.addFile(ep_obj.location) # do the library update for pyTivo notifiers.pytivo_notifier.update_library(ep_obj) # do the library update for Trakt notifiers.trakt_notifier.update_library(ep_obj) except Exception: logger.log( "Some notifications could not be sent. Continuing with postProcessing..." ) self._run_extra_scripts(ep_obj) return True
https://github.com/SickChill/SickChill/issues/1373
Thread-14 :: [6e3ebea] Failed doing webui callback: Traceback (most recent call last): File "/share/1000/sickrage/sickbeard/webserve.py", line 285, in async_call result = function(**kwargs) File "/share/1000/sickrage/sickbeard/webserve.py", line 2302, in processEpisode is_priority=argToBool(is_priority), delete_on=argToBool(delete_on), failed=argToBool(failed), proc_type=type File "/share/1000/sickrage/sickbeard/processTV.py", line 247, in processDir process_media(path, [video], nzbName, process_method, force, is_priority, result) File "/share/1000/sickrage/sickbeard/processTV.py", line 575, in process_media result.result = processor.process() File "/share/1000/sickrage/sickbeard/postProcessor.py", line 1029, in process if int(ep_obj.season) > int(max_season[0][0]): TypeError: int() argument must be a string or a number, not 'NoneType'
TypeError
def disk_usage(path): if platform.system() == "Windows": import sys _, total, free = ( ctypes.c_ulonglong(), ctypes.c_ulonglong(), ctypes.c_ulonglong(), ) if sys.version_info >= (3,) or isinstance(path, unicode): method = ctypes.windll.kernel32.GetDiskFreeSpaceExW else: method = ctypes.windll.kernel32.GetDiskFreeSpaceExA ret = method(path, ctypes.byref(_), ctypes.byref(total), ctypes.byref(free)) if ret == 0: logger.log( "Unable to determine free space, something went wrong", logger.WARNING ) raise ctypes.WinError() return free.value elif hasattr(os, "statvfs"): # POSIX import subprocess call = subprocess.Popen( ["df", "-B", "K", path], stdout=subprocess.PIPE, stderr=subprocess.PIPE ) output = call.communicate()[0] return int(output.split("\n")[1].split()[3]) * 1024 else: raise Exception("Unable to determine free space on your OS")
def disk_usage(path): if platform.system() == "Windows": import sys _, total, free = ( ctypes.c_ulonglong(), ctypes.c_ulonglong(), ctypes.c_ulonglong(), ) if sys.version_info >= (3,) or isinstance(path, unicode): method = ctypes.windll.kernel32.GetDiskFreeSpaceExW else: method = ctypes.windll.kernel32.GetDiskFreeSpaceExA ret = method(path, ctypes.byref(_), ctypes.byref(total), ctypes.byref(free)) if ret == 0: logger.log( "Unable to determine free space, something went wrong", logger.WARNING ) raise ctypes.WinError() return free.value elif hasattr(os, "statvfs"): # POSIX import subprocess call = subprocess.Popen( ["df", path], stdout=subprocess.PIPE, stderr=subprocess.PIPE ) output = call.communicate()[0] return output.split("\n")[1].split()[3] else: raise Exception("Unable to determine free space on your OS")
https://github.com/SickChill/SickChill/issues/1269
2016-03-28 08:59:59 DEBUG POSTPROCESSER :: 'Traceback (most recent call last):\n File "/usr/share/sickrage/sickbeard/scheduler.py", line 106, in run\n self.action.run(self.force)\n File "/usr/share/sickrage/sickbeard/auto_postprocessor.py", line 56, in run\n processTV.processDir(sickbeard.TV_DOWNLOAD_DIR, force=force)\n File "/usr/share/sickrage/sickbeard/processTV.py", line 154, in func_wrapper\n ret = func(*args, **kargs)\n File "/usr/share/sickrage/sickbeard/processTV.py", line 295, in processDir\n process_media(processPath, videoFiles, nzbName, process_method, force, is_priority, result)\n File "/usr/share/sickrage/sickbeard/processTV.py", line 572, in process_media\n result.result = processor.process()\n File "/usr/share/sickrage/sickbeard/postProcessor.py", line 1040, in process\n if not verify_freespace(self.file_path, ep_obj.show._location, [ep_obj] + ep_obj.relatedEps): # pylint: disable=protected-access\n File "/usr/share/sickrage/sickbeard/helpers.py", line 1617, in verify_freespace\n diskfree += ek(os.path.getsize, f.location)\nTypeError: coercing to Unicode: need string or buffer, int found\n' AATypeError: coercing to Unicode: need string or buffer, int found AA diskfree += ek(os.path.getsize, f.location) AA File "/usr/share/sickrage/sickbeard/helpers.py", line 1617, in verify_freespace AA if not verify_freespace(self.file_path, ep_obj.show._location, [ep_obj] + ep_obj.relatedEps): # pylint: disable=protected-access AA File "/usr/share/sickrage/sickbeard/postProcessor.py", line 1040, in process AA result.result = processor.process() AA File "/usr/share/sickrage/sickbeard/processTV.py", line 572, in process_media AA process_media(processPath, videoFiles, nzbName, process_method, force, is_priority, result) AA File "/usr/share/sickrage/sickbeard/processTV.py", line 295, in processDir AA ret = func(*args, **kargs) AA File "/usr/share/sickrage/sickbeard/processTV.py", line 154, in func_wrapper AA processTV.processDir(sickbeard.TV_DOWNLOAD_DIR, force=force) AA File "/usr/share/sickrage/sickbeard/auto_postprocessor.py", line 56, in run AA self.action.run(self.force) AA File "/usr/share/sickrage/sickbeard/scheduler.py", line 106, in run AATraceback (most recent call last): 2016-03-28 08:59:59 ERROR POSTPROCESSER :: [a908b34] Exception generated in thread POSTPROCESSER: coercing to Unicode: need string or buffer, int found 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Trying to determine free space on destination drive 2016-03-28 08:59:59 INFO POSTPROCESSER :: This download is marked a priority download so I'm going to replace an existing file if I find one 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: File /children/Hey Arnold!/s01e06.mkv is larger than /completed/sickrage/Hey.Arnold.S01.DVDRip.x264-DEiMOS/proof-hey.arnold.s01e06.dvdrip.x264-deimos.vob 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Is ep a priority download: True 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: This was manually downloaded but it appears to be better quality than what we have so I'm marking it as priority 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Quality of the episode we're processing: SD DVD 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Hey.Arnold.S01.DVDRip.x264-DEiMOS looks like it has quality SD DVD, using that 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Looking up quality for name Hey.Arnold.S01.DVDRip.x264-DEiMOS, got SD DVD 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Checking if /children/Hey Arnold!/s01e06-thumb.jpg exists: True 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Checking if /children/Hey Arnold!/s01e06.nfo exists: True
AATypeError
def initialize(consoleLogging=True): # pylint: disable=too-many-locals, too-many-branches, too-many-statements with INIT_LOCK: # pylint: disable=global-statement global \ BRANCH, \ GIT_RESET, \ GIT_REMOTE, \ GIT_REMOTE_URL, \ CUR_COMMIT_HASH, \ CUR_COMMIT_BRANCH, \ ACTUAL_LOG_DIR, \ LOG_DIR, \ LOG_NR, \ LOG_SIZE, \ WEB_PORT, \ WEB_LOG, \ ENCRYPTION_VERSION, \ ENCRYPTION_SECRET, \ WEB_ROOT, \ WEB_USERNAME, \ WEB_PASSWORD, \ WEB_HOST, \ WEB_IPV6, \ WEB_COOKIE_SECRET, \ WEB_USE_GZIP, \ API_KEY, \ ENABLE_HTTPS, \ HTTPS_CERT, \ HTTPS_KEY, \ HANDLE_REVERSE_PROXY, \ USE_NZBS, \ USE_TORRENTS, \ NZB_METHOD, \ NZB_DIR, \ DOWNLOAD_PROPERS, \ RANDOMIZE_PROVIDERS, \ CHECK_PROPERS_INTERVAL, \ ALLOW_HIGH_PRIORITY, \ SAB_FORCED, \ TORRENT_METHOD, \ NOTIFY_ON_LOGIN, \ SAB_USERNAME, \ SAB_PASSWORD, \ SAB_APIKEY, \ SAB_CATEGORY, \ SAB_CATEGORY_BACKLOG, \ SAB_CATEGORY_ANIME, \ SAB_CATEGORY_ANIME_BACKLOG, \ SAB_HOST, \ NZBGET_USERNAME, \ NZBGET_PASSWORD, \ NZBGET_CATEGORY, \ NZBGET_CATEGORY_BACKLOG, \ NZBGET_CATEGORY_ANIME, \ NZBGET_CATEGORY_ANIME_BACKLOG, \ NZBGET_PRIORITY, \ NZBGET_HOST, \ NZBGET_USE_HTTPS, \ backlogSearchScheduler, \ TORRENT_USERNAME, \ TORRENT_PASSWORD, \ TORRENT_HOST, \ TORRENT_PATH, \ TORRENT_SEED_TIME, \ TORRENT_PAUSED, \ TORRENT_HIGH_BANDWIDTH, \ TORRENT_LABEL, \ TORRENT_LABEL_ANIME, \ TORRENT_VERIFY_CERT, \ TORRENT_RPCURL, \ TORRENT_AUTH_TYPE, \ USE_KODI, \ KODI_ALWAYS_ON, \ KODI_NOTIFY_ONSNATCH, \ KODI_NOTIFY_ONDOWNLOAD, \ KODI_NOTIFY_ONSUBTITLEDOWNLOAD, \ KODI_UPDATE_FULL, \ KODI_UPDATE_ONLYFIRST, \ KODI_UPDATE_LIBRARY, \ KODI_HOST, \ KODI_USERNAME, \ KODI_PASSWORD, \ BACKLOG_FREQUENCY, \ USE_TRAKT, \ TRAKT_USERNAME, \ TRAKT_ACCESS_TOKEN, \ TRAKT_REFRESH_TOKEN, \ TRAKT_REMOVE_WATCHLIST, \ TRAKT_SYNC_WATCHLIST, \ TRAKT_REMOVE_SHOW_FROM_SICKRAGE, \ TRAKT_METHOD_ADD, \ TRAKT_START_PAUSED, \ traktCheckerScheduler, \ TRAKT_USE_RECOMMENDED, \ TRAKT_SYNC, \ TRAKT_SYNC_REMOVE, \ TRAKT_DEFAULT_INDEXER, \ TRAKT_REMOVE_SERIESLIST, \ TRAKT_TIMEOUT, \ TRAKT_BLACKLIST_NAME, \ USE_PLEX_SERVER, \ PLEX_NOTIFY_ONSNATCH, \ PLEX_NOTIFY_ONDOWNLOAD, \ PLEX_NOTIFY_ONSUBTITLEDOWNLOAD, \ PLEX_UPDATE_LIBRARY, \ USE_PLEX_CLIENT, \ PLEX_CLIENT_USERNAME, \ PLEX_CLIENT_PASSWORD, \ PLEX_SERVER_HOST, \ PLEX_SERVER_TOKEN, \ PLEX_CLIENT_HOST, \ PLEX_SERVER_USERNAME, \ PLEX_SERVER_PASSWORD, \ PLEX_SERVER_HTTPS, \ MIN_BACKLOG_FREQUENCY, \ SKIP_REMOVED_FILES, \ ALLOWED_EXTENSIONS, \ USE_EMBY, \ EMBY_HOST, \ EMBY_APIKEY, \ showUpdateScheduler, \ INDEXER_DEFAULT_LANGUAGE, \ EP_DEFAULT_DELETED_STATUS, \ LAUNCH_BROWSER, \ TRASH_REMOVE_SHOW, \ TRASH_ROTATE_LOGS, \ SORT_ARTICLE, \ NEWZNAB_DATA, \ NZBS, \ NZBS_UID, \ NZBS_HASH, \ INDEXER_DEFAULT, \ INDEXER_TIMEOUT, \ USENET_RETENTION, \ TORRENT_DIR, \ QUALITY_DEFAULT, \ FLATTEN_FOLDERS_DEFAULT, \ SUBTITLES_DEFAULT, \ STATUS_DEFAULT, \ STATUS_DEFAULT_AFTER, \ GROWL_NOTIFY_ONSNATCH, \ GROWL_NOTIFY_ONDOWNLOAD, \ GROWL_NOTIFY_ONSUBTITLEDOWNLOAD, \ TWITTER_NOTIFY_ONSNATCH, \ TWITTER_NOTIFY_ONDOWNLOAD, \ TWITTER_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_FREEMOBILE, \ FREEMOBILE_ID, \ FREEMOBILE_APIKEY, \ FREEMOBILE_NOTIFY_ONSNATCH, \ FREEMOBILE_NOTIFY_ONDOWNLOAD, \ FREEMOBILE_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_TELEGRAM, \ TELEGRAM_ID, \ TELEGRAM_APIKEY, \ TELEGRAM_NOTIFY_ONSNATCH, \ TELEGRAM_NOTIFY_ONDOWNLOAD, \ TELEGRAM_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_JOIN, \ JOIN_ID, \ JOIN_NOTIFY_ONSNATCH, \ JOIN_NOTIFY_ONDOWNLOAD, \ JOIN_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_GROWL, \ GROWL_HOST, \ GROWL_PASSWORD, \ USE_PROWL, \ PROWL_NOTIFY_ONSNATCH, \ PROWL_NOTIFY_ONDOWNLOAD, \ PROWL_NOTIFY_ONSUBTITLEDOWNLOAD, \ PROWL_API, \ PROWL_PRIORITY, \ PROWL_MESSAGE_TITLE, \ USE_PYTIVO, \ PYTIVO_NOTIFY_ONSNATCH, \ PYTIVO_NOTIFY_ONDOWNLOAD, \ PYTIVO_NOTIFY_ONSUBTITLEDOWNLOAD, \ PYTIVO_UPDATE_LIBRARY, \ PYTIVO_HOST, \ PYTIVO_SHARE_NAME, \ PYTIVO_TIVO_NAME, \ USE_NMA, \ NMA_NOTIFY_ONSNATCH, \ NMA_NOTIFY_ONDOWNLOAD, \ NMA_NOTIFY_ONSUBTITLEDOWNLOAD, \ NMA_API, \ NMA_PRIORITY, \ USE_PUSHALOT, \ PUSHALOT_NOTIFY_ONSNATCH, \ PUSHALOT_NOTIFY_ONDOWNLOAD, \ PUSHALOT_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHALOT_AUTHORIZATIONTOKEN, \ USE_PUSHBULLET, \ PUSHBULLET_NOTIFY_ONSNATCH, \ PUSHBULLET_NOTIFY_ONDOWNLOAD, \ PUSHBULLET_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHBULLET_API, \ PUSHBULLET_DEVICE, \ PUSHBULLET_CHANNEL, \ versionCheckScheduler, \ VERSION_NOTIFY, \ AUTO_UPDATE, \ NOTIFY_ON_UPDATE, \ PROCESS_AUTOMATICALLY, \ NO_DELETE, \ USE_ICACLS, \ UNPACK, \ CPU_PRESET, \ UNRAR_TOOL, \ ALT_UNRAR_TOOL, \ KEEP_PROCESSED_DIR, \ PROCESS_METHOD, \ DELRARCONTENTS, \ TV_DOWNLOAD_DIR, \ UPDATE_FREQUENCY, \ showQueueScheduler, \ searchQueueScheduler, \ postProcessorTaskScheduler, \ ROOT_DIRS, \ CACHE_DIR, \ ACTUAL_CACHE_DIR, \ TIMEZONE_DISPLAY, \ NAMING_PATTERN, \ NAMING_MULTI_EP, \ NAMING_ANIME_MULTI_EP, \ NAMING_FORCE_FOLDERS, \ NAMING_ABD_PATTERN, \ NAMING_CUSTOM_ABD, \ NAMING_SPORTS_PATTERN, \ NAMING_CUSTOM_SPORTS, \ NAMING_ANIME_PATTERN, \ NAMING_CUSTOM_ANIME, \ NAMING_STRIP_YEAR, \ RENAME_EPISODES, \ AIRDATE_EPISODES, \ FILE_TIMESTAMP_TIMEZONE, \ properFinderScheduler, \ PROVIDER_ORDER, \ autoPostProcessorScheduler, \ providerList, \ newznabProviderList, \ torrentRssProviderList, \ EXTRA_SCRIPTS, \ USE_TWITTER, \ TWITTER_USERNAME, \ TWITTER_PASSWORD, \ TWITTER_PREFIX, \ DAILYSEARCH_FREQUENCY, \ TWITTER_DMTO, \ TWITTER_USEDM, \ USE_TWILIO, \ TWILIO_NOTIFY_ONSNATCH, \ TWILIO_NOTIFY_ONDOWNLOAD, \ TWILIO_NOTIFY_ONSUBTITLEDOWNLOAD, \ TWILIO_PHONE_SID, \ TWILIO_ACCOUNT_SID, \ TWILIO_AUTH_TOKEN, \ TWILIO_TO_NUMBER, \ USE_BOXCAR2, \ BOXCAR2_ACCESSTOKEN, \ BOXCAR2_NOTIFY_ONDOWNLOAD, \ BOXCAR2_NOTIFY_ONSUBTITLEDOWNLOAD, \ BOXCAR2_NOTIFY_ONSNATCH, \ USE_PUSHOVER, \ PUSHOVER_USERKEY, \ PUSHOVER_APIKEY, \ PUSHOVER_DEVICE, \ PUSHOVER_NOTIFY_ONDOWNLOAD, \ PUSHOVER_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHOVER_NOTIFY_ONSNATCH, \ PUSHOVER_SOUND, \ PUSHOVER_PRIORITY, \ USE_LIBNOTIFY, \ LIBNOTIFY_NOTIFY_ONSNATCH, \ LIBNOTIFY_NOTIFY_ONDOWNLOAD, \ LIBNOTIFY_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_NMJ, \ NMJ_HOST, \ NMJ_DATABASE, \ NMJ_MOUNT, \ USE_NMJv2, \ NMJv2_HOST, \ NMJv2_DATABASE, \ NMJv2_DBLOC, \ USE_SYNOINDEX, \ USE_SYNOLOGYNOTIFIER, \ SYNOLOGYNOTIFIER_NOTIFY_ONSNATCH, \ SYNOLOGYNOTIFIER_NOTIFY_ONDOWNLOAD, \ SYNOLOGYNOTIFIER_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_EMAIL, \ EMAIL_HOST, \ EMAIL_PORT, \ EMAIL_TLS, \ EMAIL_USER, \ EMAIL_PASSWORD, \ EMAIL_FROM, \ EMAIL_NOTIFY_ONSNATCH, \ EMAIL_NOTIFY_ONDOWNLOAD, \ EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD, \ EMAIL_LIST, \ EMAIL_SUBJECT, \ USE_LISTVIEW, \ METADATA_KODI, \ METADATA_KODI_12PLUS, \ METADATA_MEDIABROWSER, \ METADATA_PS3, \ metadata_provider_dict, \ NEWZBIN, \ NEWZBIN_USERNAME, \ NEWZBIN_PASSWORD, \ GIT_PATH, \ MOVE_ASSOCIATED_FILES, \ SYNC_FILES, \ POSTPONE_IF_SYNC_FILES, \ dailySearchScheduler, \ NFO_RENAME, \ GUI_NAME, \ HOME_LAYOUT, \ HISTORY_LAYOUT, \ DISPLAY_SHOW_SPECIALS, \ COMING_EPS_LAYOUT, \ COMING_EPS_SORT, \ COMING_EPS_DISPLAY_PAUSED, \ COMING_EPS_MISSED_RANGE, \ FUZZY_DATING, \ TRIM_ZERO, \ DATE_PRESET, \ TIME_PRESET, \ TIME_PRESET_W_SECONDS, \ THEME_NAME, \ POSTER_SORTBY, \ POSTER_SORTDIR, \ HISTORY_LIMIT, \ CREATE_MISSING_SHOW_DIRS, \ ADD_SHOWS_WO_DIR, \ USE_FREE_SPACE_CHECK, \ METADATA_WDTV, \ METADATA_TIVO, \ METADATA_MEDE8ER, \ IGNORE_WORDS, \ TRACKERS_LIST, \ IGNORED_SUBS_LIST, \ REQUIRE_WORDS, \ CALENDAR_UNPROTECTED, \ CALENDAR_ICONS, \ NO_RESTART, \ USE_SUBTITLES, \ SUBTITLES_LANGUAGES, \ SUBTITLES_DIR, \ SUBTITLES_SERVICES_LIST, \ SUBTITLES_SERVICES_ENABLED, \ SUBTITLES_HISTORY, \ SUBTITLES_FINDER_FREQUENCY, \ SUBTITLES_MULTI, \ SUBTITLES_KEEP_ONLY_WANTED, \ EMBEDDED_SUBTITLES_ALL, \ SUBTITLES_EXTRA_SCRIPTS, \ SUBTITLES_PERFECT_MATCH, \ subtitlesFinderScheduler, \ SUBTITLES_HEARING_IMPAIRED, \ ADDIC7ED_USER, \ ADDIC7ED_PASS, \ ITASA_USER, \ ITASA_PASS, \ LEGENDASTV_USER, \ LEGENDASTV_PASS, \ OPENSUBTITLES_USER, \ OPENSUBTITLES_PASS, \ USE_FAILED_DOWNLOADS, \ DELETE_FAILED, \ ANON_REDIRECT, \ LOCALHOST_IP, \ DEBUG, \ DBDEBUG, \ DEFAULT_PAGE, \ PROXY_SETTING, \ AUTOPOSTPROCESSOR_FREQUENCY, \ SHOWUPDATE_HOUR, \ ANIME_DEFAULT, \ NAMING_ANIME, \ ANIMESUPPORT, \ USE_ANIDB, \ ANIDB_USERNAME, \ ANIDB_PASSWORD, \ ANIDB_USE_MYLIST, \ ANIME_SPLIT_HOME, \ SCENE_DEFAULT, \ DOWNLOAD_URL, \ BACKLOG_DAYS, \ GIT_USERNAME, \ GIT_PASSWORD, \ DEVELOPER, \ DISPLAY_ALL_SEASONS, \ SSL_VERIFY, \ NEWS_LAST_READ, \ NEWS_LATEST, \ SOCKET_TIMEOUT, \ SYNOLOGY_DSM_HOST, \ SYNOLOGY_DSM_USERNAME, \ SYNOLOGY_DSM_PASSWORD, \ SYNOLOGY_DSM_PATH, \ GUI_LANG, \ SICKRAGE_BACKGROUND, \ SICKRAGE_BACKGROUND_PATH, \ FANART_BACKGROUND, \ FANART_BACKGROUND_OPACITY, \ USE_SLACK, \ SLACK_NOTIFY_SNATCH, \ SLACK_NOTIFY_DOWNLOAD, \ SLACK_WEBHOOK if __INITIALIZED__: return False CheckSection(CFG, "General") CheckSection(CFG, "Blackhole") CheckSection(CFG, "Newzbin") CheckSection(CFG, "SABnzbd") CheckSection(CFG, "NZBget") CheckSection(CFG, "KODI") CheckSection(CFG, "PLEX") CheckSection(CFG, "Emby") CheckSection(CFG, "Growl") CheckSection(CFG, "Prowl") CheckSection(CFG, "Twitter") CheckSection(CFG, "Boxcar2") CheckSection(CFG, "NMJ") CheckSection(CFG, "NMJv2") CheckSection(CFG, "Synology") CheckSection(CFG, "SynologyNotifier") CheckSection(CFG, "pyTivo") CheckSection(CFG, "NMA") CheckSection(CFG, "Pushalot") CheckSection(CFG, "Pushbullet") CheckSection(CFG, "Subtitles") CheckSection(CFG, "pyTivo") CheckSection(CFG, "Slack") # Need to be before any passwords ENCRYPTION_VERSION = check_setting_int(CFG, "General", "encryption_version", 0) ENCRYPTION_SECRET = check_setting_str( CFG, "General", "encryption_secret", helpers.generateCookieSecret(), censor_log=True, ) # git login info GIT_USERNAME = check_setting_str(CFG, "General", "git_username", "") GIT_PASSWORD = check_setting_str( CFG, "General", "git_password", "", censor_log=True ) DEVELOPER = bool(check_setting_int(CFG, "General", "developer", 0)) # debugging DEBUG = bool(check_setting_int(CFG, "General", "debug", 0)) DBDEBUG = bool(check_setting_int(CFG, "General", "dbdebug", 0)) DEFAULT_PAGE = check_setting_str(CFG, "General", "default_page", "home") if DEFAULT_PAGE not in ("home", "schedule", "history", "news", "IRC"): DEFAULT_PAGE = "home" ACTUAL_LOG_DIR = check_setting_str(CFG, "General", "log_dir", "Logs") LOG_DIR = ek(os.path.normpath, ek(os.path.join, DATA_DIR, ACTUAL_LOG_DIR)) LOG_NR = check_setting_int( CFG, "General", "log_nr", 5 ) # Default to 5 backup file (sickrage.log.x) LOG_SIZE = check_setting_float( CFG, "General", "log_size", 10.0 ) # Default to max 10MB per logfile if LOG_SIZE > 100: LOG_SIZE = 10.0 fileLogging = True if not helpers.makeDir(LOG_DIR): sys.stderr.write("!!! No log folder, logging to screen only!\n") fileLogging = False # init logging logger.init_logging( console_logging=consoleLogging, file_logging=fileLogging, debug_logging=DEBUG, database_logging=DBDEBUG, ) # Initializes sickbeard.gh setup_github() # git reset on update GIT_RESET = bool(check_setting_int(CFG, "General", "git_reset", 1)) # current git branch BRANCH = check_setting_str(CFG, "General", "branch", "") # git_remote GIT_REMOTE = check_setting_str(CFG, "General", "git_remote", "origin") GIT_REMOTE_URL = check_setting_str( CFG, "General", "git_remote_url", "https://github.com/{0}/{1}.git".format(GIT_ORG, GIT_REPO), ) if "sickragetv" in GIT_REMOTE_URL.lower(): GIT_REMOTE_URL = "https://github.com/SickRage/SickRage.git" # current commit hash CUR_COMMIT_HASH = check_setting_str(CFG, "General", "cur_commit_hash", "") # current commit branch CUR_COMMIT_BRANCH = check_setting_str(CFG, "General", "cur_commit_branch", "") ACTUAL_CACHE_DIR = check_setting_str(CFG, "General", "cache_dir", "cache") # fix bad configs due to buggy code if ACTUAL_CACHE_DIR == "None": ACTUAL_CACHE_DIR = "cache" # unless they specify, put the cache dir inside the data dir if not ek(os.path.isabs, ACTUAL_CACHE_DIR): CACHE_DIR = ek(os.path.join, DATA_DIR, ACTUAL_CACHE_DIR) else: CACHE_DIR = ACTUAL_CACHE_DIR if not helpers.makeDir(CACHE_DIR): logger.log( "!!! Creating local cache dir failed, using system default", logger.ERROR, ) CACHE_DIR = None # Check if we need to perform a restore of the cache folder try: restoreDir = ek(os.path.join, DATA_DIR, "restore") if ek(os.path.exists, restoreDir) and ek( os.path.exists, ek(os.path.join, restoreDir, "cache") ): def restoreCache(srcDir, dstDir): def path_leaf(path): head, tail = ek(os.path.split, path) return tail or ek(os.path.basename, head) try: if ek(os.path.isdir, dstDir): bakFilename = "{0}-{1}".format( path_leaf(dstDir), datetime.datetime.strftime( datetime.datetime.now(), "%Y%m%d_%H%M%S" ), ) shutil.move( dstDir, ek( os.path.join, ek(os.path.dirname, dstDir), bakFilename, ), ) shutil.move(srcDir, dstDir) logger.log("Restore: restoring cache successful", logger.INFO) except Exception as e: logger.log( "Restore: restoring cache failed: {0}".format(e), logger.ERROR, ) restoreCache(ek(os.path.join, restoreDir, "cache"), CACHE_DIR) except Exception as e: logger.log( "Restore: restoring cache failed: {0}".format(ex(e)), logger.ERROR ) finally: if ek(os.path.exists, ek(os.path.join, DATA_DIR, "restore")): try: shutil.rmtree(ek(os.path.join, DATA_DIR, "restore")) except Exception as e: logger.log( "Restore: Unable to remove the restore directory: {0}".format( ex(e) ), logger.ERROR, ) for cleanupDir in ["mako", "sessions", "indexers", "rss"]: try: shutil.rmtree(ek(os.path.join, CACHE_DIR, cleanupDir)) except Exception as e: if cleanupDir not in ["rss", "sessions", "indexers"]: logger.log( "Restore: Unable to remove the cache/{0} directory: {1}".format( cleanupDir, ex(e) ), logger.WARNING, ) THEME_NAME = check_setting_str(CFG, "GUI", "theme_name", "dark") SICKRAGE_BACKGROUND = bool( check_setting_int(CFG, "GUI", "sickrage_background", 1) ) SICKRAGE_BACKGROUND_PATH = check_setting_str( CFG, "GUI", "sickrage_background_path", "" ) FANART_BACKGROUND = bool(check_setting_int(CFG, "GUI", "fanart_background", 1)) FANART_BACKGROUND_OPACITY = check_setting_float( CFG, "GUI", "fanart_background_opacity", 0.4 ) GUI_NAME = check_setting_str(CFG, "GUI", "gui_name", "slick") GUI_LANG = check_setting_str(CFG, "GUI", "language", "") if GUI_LANG: gettext.translation( "messages", LOCALE_DIR, languages=[GUI_LANG], codeset="UTF-8" ).install(unicode=1) else: gettext.install("messages", LOCALE_DIR, unicode=1, codeset="UTF-8") SOCKET_TIMEOUT = check_setting_int(CFG, "General", "socket_timeout", 30) socket.setdefaulttimeout(SOCKET_TIMEOUT) try: WEB_PORT = check_setting_int(CFG, "General", "web_port", 8081) except Exception: WEB_PORT = 8081 if 21 > WEB_PORT > 65535: WEB_PORT = 8081 WEB_HOST = check_setting_str(CFG, "General", "web_host", "0.0.0.0") WEB_IPV6 = bool(check_setting_int(CFG, "General", "web_ipv6", 0)) WEB_ROOT = check_setting_str(CFG, "General", "web_root", "").rstrip("/") WEB_LOG = bool(check_setting_int(CFG, "General", "web_log", 0)) WEB_USERNAME = check_setting_str( CFG, "General", "web_username", "", censor_log=True ) WEB_PASSWORD = check_setting_str( CFG, "General", "web_password", "", censor_log=True ) WEB_COOKIE_SECRET = check_setting_str( CFG, "General", "web_cookie_secret", helpers.generateCookieSecret(), censor_log=True, ) if not WEB_COOKIE_SECRET: WEB_COOKIE_SECRET = helpers.generateCookieSecret() WEB_USE_GZIP = bool(check_setting_int(CFG, "General", "web_use_gzip", 1)) SSL_VERIFY = bool(check_setting_int(CFG, "General", "ssl_verify", 1)) INDEXER_DEFAULT_LANGUAGE = check_setting_str( CFG, "General", "indexerDefaultLang", "en" ) EP_DEFAULT_DELETED_STATUS = check_setting_int( CFG, "General", "ep_default_deleted_status", 6 ) LAUNCH_BROWSER = bool(check_setting_int(CFG, "General", "launch_browser", 1)) DOWNLOAD_URL = check_setting_str(CFG, "General", "download_url", "") LOCALHOST_IP = check_setting_str(CFG, "General", "localhost_ip", "") CPU_PRESET = check_setting_str(CFG, "General", "cpu_preset", "NORMAL") ANON_REDIRECT = check_setting_str( CFG, "General", "anon_redirect", "http://dereferer.org/?" ) PROXY_SETTING = check_setting_str(CFG, "General", "proxy_setting", "") # attempt to help prevent users from breaking links by using a bad url if not ANON_REDIRECT.endswith("?"): ANON_REDIRECT = "" TRASH_REMOVE_SHOW = bool( check_setting_int(CFG, "General", "trash_remove_show", 0) ) TRASH_ROTATE_LOGS = bool( check_setting_int(CFG, "General", "trash_rotate_logs", 0) ) SORT_ARTICLE = bool(check_setting_int(CFG, "General", "sort_article", 0)) API_KEY = check_setting_str(CFG, "General", "api_key", "", censor_log=True) ENABLE_HTTPS = bool(check_setting_int(CFG, "General", "enable_https", 0)) NOTIFY_ON_LOGIN = bool(check_setting_int(CFG, "General", "notify_on_login", 0)) HTTPS_CERT = check_setting_str(CFG, "General", "https_cert", "server.crt") HTTPS_KEY = check_setting_str(CFG, "General", "https_key", "server.key") HANDLE_REVERSE_PROXY = bool( check_setting_int(CFG, "General", "handle_reverse_proxy", 0) ) ROOT_DIRS = check_setting_str(CFG, "General", "root_dirs", "") if not re.match(r"\d+\|[^|]+(?:\|[^|]+)*", ROOT_DIRS): ROOT_DIRS = "" QUALITY_DEFAULT = check_setting_int(CFG, "General", "quality_default", SD) STATUS_DEFAULT = check_setting_int(CFG, "General", "status_default", SKIPPED) STATUS_DEFAULT_AFTER = check_setting_int( CFG, "General", "status_default_after", WANTED ) VERSION_NOTIFY = bool(check_setting_int(CFG, "General", "version_notify", 1)) AUTO_UPDATE = bool(check_setting_int(CFG, "General", "auto_update", 0)) NOTIFY_ON_UPDATE = bool( check_setting_int(CFG, "General", "notify_on_update", 1) ) FLATTEN_FOLDERS_DEFAULT = bool( check_setting_int(CFG, "General", "flatten_folders_default", 0) ) INDEXER_DEFAULT = check_setting_int(CFG, "General", "indexer_default", 0) INDEXER_TIMEOUT = check_setting_int(CFG, "General", "indexer_timeout", 20) ANIME_DEFAULT = bool(check_setting_int(CFG, "General", "anime_default", 0)) SCENE_DEFAULT = bool(check_setting_int(CFG, "General", "scene_default", 0)) PROVIDER_ORDER = check_setting_str(CFG, "General", "provider_order", "").split() NAMING_PATTERN = check_setting_str( CFG, "General", "naming_pattern", "Season %0S/%SN - S%0SE%0E - %EN" ) NAMING_ABD_PATTERN = check_setting_str( CFG, "General", "naming_abd_pattern", "%SN - %A.D - %EN" ) NAMING_CUSTOM_ABD = bool( check_setting_int(CFG, "General", "naming_custom_abd", 0) ) NAMING_SPORTS_PATTERN = check_setting_str( CFG, "General", "naming_sports_pattern", "%SN - %A-D - %EN" ) NAMING_ANIME_PATTERN = check_setting_str( CFG, "General", "naming_anime_pattern", "Season %0S/%SN - S%0SE%0E - %EN" ) NAMING_ANIME = check_setting_int(CFG, "General", "naming_anime", 3) NAMING_CUSTOM_SPORTS = bool( check_setting_int(CFG, "General", "naming_custom_sports", 0) ) NAMING_CUSTOM_ANIME = bool( check_setting_int(CFG, "General", "naming_custom_anime", 0) ) NAMING_MULTI_EP = check_setting_int(CFG, "General", "naming_multi_ep", 1) NAMING_ANIME_MULTI_EP = check_setting_int( CFG, "General", "naming_anime_multi_ep", 1 ) NAMING_FORCE_FOLDERS = naming.check_force_season_folders() NAMING_STRIP_YEAR = bool( check_setting_int(CFG, "General", "naming_strip_year", 0) ) USE_NZBS = bool(check_setting_int(CFG, "General", "use_nzbs", 0)) USE_TORRENTS = bool(check_setting_int(CFG, "General", "use_torrents", 1)) NZB_METHOD = check_setting_str(CFG, "General", "nzb_method", "blackhole") if NZB_METHOD not in ("blackhole", "sabnzbd", "nzbget", "download_station"): NZB_METHOD = "blackhole" TORRENT_METHOD = check_setting_str( CFG, "General", "torrent_method", "blackhole" ) if TORRENT_METHOD not in ( "blackhole", "utorrent", "transmission", "deluge", "deluged", "download_station", "rtorrent", "qbittorrent", "mlnet", "putio", ): TORRENT_METHOD = "blackhole" DOWNLOAD_PROPERS = bool( check_setting_int(CFG, "General", "download_propers", 1) ) CHECK_PROPERS_INTERVAL = check_setting_str( CFG, "General", "check_propers_interval", "" ) if CHECK_PROPERS_INTERVAL not in ("15m", "45m", "90m", "4h", "daily"): CHECK_PROPERS_INTERVAL = "daily" RANDOMIZE_PROVIDERS = bool( check_setting_int(CFG, "General", "randomize_providers", 0) ) ALLOW_HIGH_PRIORITY = bool( check_setting_int(CFG, "General", "allow_high_priority", 1) ) SKIP_REMOVED_FILES = bool( check_setting_int(CFG, "General", "skip_removed_files", 0) ) ALLOWED_EXTENSIONS = check_setting_str( CFG, "General", "allowed_extensions", ALLOWED_EXTENSIONS ) USENET_RETENTION = check_setting_int(CFG, "General", "usenet_retention", 500) AUTOPOSTPROCESSOR_FREQUENCY = check_setting_int( CFG, "General", "autopostprocessor_frequency", DEFAULT_AUTOPOSTPROCESSOR_FREQUENCY, ) if AUTOPOSTPROCESSOR_FREQUENCY < MIN_AUTOPOSTPROCESSOR_FREQUENCY: AUTOPOSTPROCESSOR_FREQUENCY = MIN_AUTOPOSTPROCESSOR_FREQUENCY DAILYSEARCH_FREQUENCY = check_setting_int( CFG, "General", "dailysearch_frequency", DEFAULT_DAILYSEARCH_FREQUENCY ) if DAILYSEARCH_FREQUENCY < MIN_DAILYSEARCH_FREQUENCY: DAILYSEARCH_FREQUENCY = MIN_DAILYSEARCH_FREQUENCY MIN_BACKLOG_FREQUENCY = get_backlog_cycle_time() BACKLOG_FREQUENCY = check_setting_int( CFG, "General", "backlog_frequency", DEFAULT_BACKLOG_FREQUENCY ) if BACKLOG_FREQUENCY < MIN_BACKLOG_FREQUENCY: BACKLOG_FREQUENCY = MIN_BACKLOG_FREQUENCY UPDATE_FREQUENCY = check_setting_int( CFG, "General", "update_frequency", DEFAULT_UPDATE_FREQUENCY ) if UPDATE_FREQUENCY < MIN_UPDATE_FREQUENCY: UPDATE_FREQUENCY = MIN_UPDATE_FREQUENCY SHOWUPDATE_HOUR = check_setting_int( CFG, "General", "showupdate_hour", DEFAULT_SHOWUPDATE_HOUR ) if SHOWUPDATE_HOUR > 23: SHOWUPDATE_HOUR = 0 elif SHOWUPDATE_HOUR < 0: SHOWUPDATE_HOUR = 0 BACKLOG_DAYS = check_setting_int(CFG, "General", "backlog_days", 7) NEWS_LAST_READ = check_setting_str( CFG, "General", "news_last_read", "1970-01-01" ) NEWS_LATEST = NEWS_LAST_READ NZB_DIR = check_setting_str(CFG, "Blackhole", "nzb_dir", "") TORRENT_DIR = check_setting_str(CFG, "Blackhole", "torrent_dir", "") TV_DOWNLOAD_DIR = check_setting_str(CFG, "General", "tv_download_dir", "") PROCESS_AUTOMATICALLY = bool( check_setting_int(CFG, "General", "process_automatically", 0) ) NO_DELETE = bool(check_setting_int(CFG, "General", "no_delete", 0)) USE_ICACLS = bool(check_setting_int(CFG, "General", "use_icacls", 1)) UNPACK = bool(check_setting_int(CFG, "General", "unpack", 0)) UNRAR_TOOL = check_setting_str(CFG, "General", "unrar_tool", rarfile.UNRAR_TOOL) ALT_UNRAR_TOOL = check_setting_str( CFG, "General", "alt_unrar_tool", rarfile.ALT_TOOL ) RENAME_EPISODES = bool(check_setting_int(CFG, "General", "rename_episodes", 1)) AIRDATE_EPISODES = bool( check_setting_int(CFG, "General", "airdate_episodes", 0) ) FILE_TIMESTAMP_TIMEZONE = check_setting_str( CFG, "General", "file_timestamp_timezone", "network" ) KEEP_PROCESSED_DIR = bool( check_setting_int(CFG, "General", "keep_processed_dir", 1) ) PROCESS_METHOD = check_setting_str( CFG, "General", "process_method", "copy" if KEEP_PROCESSED_DIR else "move" ) DELRARCONTENTS = bool(check_setting_int(CFG, "General", "del_rar_contents", 0)) MOVE_ASSOCIATED_FILES = bool( check_setting_int(CFG, "General", "move_associated_files", 0) ) POSTPONE_IF_SYNC_FILES = bool( check_setting_int(CFG, "General", "postpone_if_sync_files", 1) ) SYNC_FILES = check_setting_str(CFG, "General", "sync_files", SYNC_FILES) NFO_RENAME = bool(check_setting_int(CFG, "General", "nfo_rename", 1)) CREATE_MISSING_SHOW_DIRS = bool( check_setting_int(CFG, "General", "create_missing_show_dirs", 0) ) ADD_SHOWS_WO_DIR = bool( check_setting_int(CFG, "General", "add_shows_wo_dir", 0) ) USE_FREE_SPACE_CHECK = bool( check_setting_int(CFG, "General", "use_free_space_check", 1) ) NZBS = bool(check_setting_int(CFG, "NZBs", "nzbs", 0)) NZBS_UID = check_setting_str(CFG, "NZBs", "nzbs_uid", "", censor_log=True) NZBS_HASH = check_setting_str(CFG, "NZBs", "nzbs_hash", "", censor_log=True) NEWZBIN = bool(check_setting_int(CFG, "Newzbin", "newzbin", 0)) NEWZBIN_USERNAME = check_setting_str( CFG, "Newzbin", "newzbin_username", "", censor_log=True ) NEWZBIN_PASSWORD = check_setting_str( CFG, "Newzbin", "newzbin_password", "", censor_log=True ) SAB_USERNAME = check_setting_str( CFG, "SABnzbd", "sab_username", "", censor_log=True ) SAB_PASSWORD = check_setting_str( CFG, "SABnzbd", "sab_password", "", censor_log=True ) SAB_APIKEY = check_setting_str( CFG, "SABnzbd", "sab_apikey", "", censor_log=True ) SAB_CATEGORY = check_setting_str(CFG, "SABnzbd", "sab_category", "tv") SAB_CATEGORY_BACKLOG = check_setting_str( CFG, "SABnzbd", "sab_category_backlog", SAB_CATEGORY ) SAB_CATEGORY_ANIME = check_setting_str( CFG, "SABnzbd", "sab_category_anime", "anime" ) SAB_CATEGORY_ANIME_BACKLOG = check_setting_str( CFG, "SABnzbd", "sab_category_anime_backlog", SAB_CATEGORY_ANIME ) SAB_HOST = check_setting_str(CFG, "SABnzbd", "sab_host", "") SAB_FORCED = bool(check_setting_int(CFG, "SABnzbd", "sab_forced", 0)) NZBGET_USERNAME = check_setting_str( CFG, "NZBget", "nzbget_username", "nzbget", censor_log=True ) NZBGET_PASSWORD = check_setting_str( CFG, "NZBget", "nzbget_password", "tegbzn6789", censor_log=True ) NZBGET_CATEGORY = check_setting_str(CFG, "NZBget", "nzbget_category", "tv") NZBGET_CATEGORY_BACKLOG = check_setting_str( CFG, "NZBget", "nzbget_category_backlog", NZBGET_CATEGORY ) NZBGET_CATEGORY_ANIME = check_setting_str( CFG, "NZBget", "nzbget_category_anime", "anime" ) NZBGET_CATEGORY_ANIME_BACKLOG = check_setting_str( CFG, "NZBget", "nzbget_category_anime_backlog", NZBGET_CATEGORY_ANIME ) NZBGET_HOST = check_setting_str(CFG, "NZBget", "nzbget_host", "") NZBGET_USE_HTTPS = bool(check_setting_int(CFG, "NZBget", "nzbget_use_https", 0)) NZBGET_PRIORITY = check_setting_int(CFG, "NZBget", "nzbget_priority", 100) TORRENT_USERNAME = check_setting_str( CFG, "TORRENT", "torrent_username", "", censor_log=True ) TORRENT_PASSWORD = check_setting_str( CFG, "TORRENT", "torrent_password", "", censor_log=True ) TORRENT_HOST = check_setting_str(CFG, "TORRENT", "torrent_host", "") TORRENT_PATH = check_setting_str(CFG, "TORRENT", "torrent_path", "") TORRENT_SEED_TIME = check_setting_int(CFG, "TORRENT", "torrent_seed_time", 0) TORRENT_PAUSED = bool(check_setting_int(CFG, "TORRENT", "torrent_paused", 0)) TORRENT_HIGH_BANDWIDTH = bool( check_setting_int(CFG, "TORRENT", "torrent_high_bandwidth", 0) ) TORRENT_LABEL = check_setting_str(CFG, "TORRENT", "torrent_label", "") TORRENT_LABEL_ANIME = check_setting_str( CFG, "TORRENT", "torrent_label_anime", "" ) TORRENT_VERIFY_CERT = bool( check_setting_int(CFG, "TORRENT", "torrent_verify_cert", 0) ) TORRENT_RPCURL = check_setting_str( CFG, "TORRENT", "torrent_rpcurl", "transmission" ) TORRENT_AUTH_TYPE = check_setting_str(CFG, "TORRENT", "torrent_auth_type", "") SYNOLOGY_DSM_HOST = check_setting_str(CFG, "Synology", "host", "") SYNOLOGY_DSM_USERNAME = check_setting_str( CFG, "Synology", "username", "", censor_log=True ) SYNOLOGY_DSM_PASSWORD = check_setting_str( CFG, "Synology", "password", "", censor_log=True ) SYNOLOGY_DSM_PATH = check_setting_str(CFG, "Synology", "path", "") USE_KODI = bool(check_setting_int(CFG, "KODI", "use_kodi", 0)) KODI_ALWAYS_ON = bool(check_setting_int(CFG, "KODI", "kodi_always_on", 1)) KODI_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "KODI", "kodi_notify_onsnatch", 0) ) KODI_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "KODI", "kodi_notify_ondownload", 0) ) KODI_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "KODI", "kodi_notify_onsubtitledownload", 0) ) KODI_UPDATE_LIBRARY = bool( check_setting_int(CFG, "KODI", "kodi_update_library", 0) ) KODI_UPDATE_FULL = bool(check_setting_int(CFG, "KODI", "kodi_update_full", 0)) KODI_UPDATE_ONLYFIRST = bool( check_setting_int(CFG, "KODI", "kodi_update_onlyfirst", 0) ) KODI_HOST = check_setting_str(CFG, "KODI", "kodi_host", "") KODI_USERNAME = check_setting_str( CFG, "KODI", "kodi_username", "", censor_log=True ) KODI_PASSWORD = check_setting_str( CFG, "KODI", "kodi_password", "", censor_log=True ) USE_PLEX_SERVER = bool(check_setting_int(CFG, "Plex", "use_plex_server", 0)) PLEX_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Plex", "plex_notify_onsnatch", 0) ) PLEX_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Plex", "plex_notify_ondownload", 0) ) PLEX_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Plex", "plex_notify_onsubtitledownload", 0) ) PLEX_UPDATE_LIBRARY = bool( check_setting_int(CFG, "Plex", "plex_update_library", 0) ) PLEX_SERVER_HOST = check_setting_str(CFG, "Plex", "plex_server_host", "") PLEX_SERVER_TOKEN = check_setting_str(CFG, "Plex", "plex_server_token", "") PLEX_CLIENT_HOST = check_setting_str(CFG, "Plex", "plex_client_host", "") PLEX_SERVER_USERNAME = check_setting_str( CFG, "Plex", "plex_server_username", "", censor_log=True ) PLEX_SERVER_PASSWORD = check_setting_str( CFG, "Plex", "plex_server_password", "", censor_log=True ) USE_PLEX_CLIENT = bool(check_setting_int(CFG, "Plex", "use_plex_client", 0)) PLEX_CLIENT_USERNAME = check_setting_str( CFG, "Plex", "plex_client_username", "", censor_log=True ) PLEX_CLIENT_PASSWORD = check_setting_str( CFG, "Plex", "plex_client_password", "", censor_log=True ) PLEX_SERVER_HTTPS = bool(check_setting_int(CFG, "Plex", "plex_server_https", 0)) USE_EMBY = bool(check_setting_int(CFG, "Emby", "use_emby", 0)) EMBY_HOST = check_setting_str(CFG, "Emby", "emby_host", "") EMBY_APIKEY = check_setting_str(CFG, "Emby", "emby_apikey", "") USE_GROWL = bool(check_setting_int(CFG, "Growl", "use_growl", 0)) GROWL_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Growl", "growl_notify_onsnatch", 0) ) GROWL_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Growl", "growl_notify_ondownload", 0) ) GROWL_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Growl", "growl_notify_onsubtitledownload", 0) ) GROWL_HOST = check_setting_str(CFG, "Growl", "growl_host", "") GROWL_PASSWORD = check_setting_str( CFG, "Growl", "growl_password", "", censor_log=True ) USE_FREEMOBILE = bool(check_setting_int(CFG, "FreeMobile", "use_freemobile", 0)) FREEMOBILE_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "FreeMobile", "freemobile_notify_onsnatch", 0) ) FREEMOBILE_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "FreeMobile", "freemobile_notify_ondownload", 0) ) FREEMOBILE_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int( CFG, "FreeMobile", "freemobile_notify_onsubtitledownload", 0 ) ) FREEMOBILE_ID = check_setting_str(CFG, "FreeMobile", "freemobile_id", "") FREEMOBILE_APIKEY = check_setting_str( CFG, "FreeMobile", "freemobile_apikey", "" ) USE_TELEGRAM = bool(check_setting_int(CFG, "Telegram", "use_telegram", 0)) TELEGRAM_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Telegram", "telegram_notify_onsnatch", 0) ) TELEGRAM_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Telegram", "telegram_notify_ondownload", 0) ) TELEGRAM_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Telegram", "telegram_notify_onsubtitledownload", 0) ) TELEGRAM_ID = check_setting_str(CFG, "Telegram", "telegram_id", "") TELEGRAM_APIKEY = check_setting_str(CFG, "Telegram", "telegram_apikey", "") USE_JOIN = bool(check_setting_int(CFG, "Join", "use_join", 0)) JOIN_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Join", "join_notify_onsnatch", 0) ) JOIN_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Join", "join_notify_ondownload", 0) ) JOIN_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Join", "join_notify_onsubtitledownload", 0) ) JOIN_ID = check_setting_str(CFG, "Join", "join_id", "") USE_PROWL = bool(check_setting_int(CFG, "Prowl", "use_prowl", 0)) PROWL_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Prowl", "prowl_notify_onsnatch", 0) ) PROWL_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Prowl", "prowl_notify_ondownload", 0) ) PROWL_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Prowl", "prowl_notify_onsubtitledownload", 0) ) PROWL_API = check_setting_str(CFG, "Prowl", "prowl_api", "", censor_log=True) PROWL_PRIORITY = check_setting_str(CFG, "Prowl", "prowl_priority", "0") PROWL_MESSAGE_TITLE = check_setting_str( CFG, "Prowl", "prowl_message_title", "SickRage" ) USE_TWITTER = bool(check_setting_int(CFG, "Twitter", "use_twitter", 0)) TWITTER_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Twitter", "twitter_notify_onsnatch", 0) ) TWITTER_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Twitter", "twitter_notify_ondownload", 0) ) TWITTER_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Twitter", "twitter_notify_onsubtitledownload", 0) ) TWITTER_USERNAME = check_setting_str( CFG, "Twitter", "twitter_username", "", censor_log=True ) TWITTER_PASSWORD = check_setting_str( CFG, "Twitter", "twitter_password", "", censor_log=True ) TWITTER_PREFIX = check_setting_str(CFG, "Twitter", "twitter_prefix", GIT_REPO) TWITTER_DMTO = check_setting_str(CFG, "Twitter", "twitter_dmto", "") TWITTER_USEDM = bool(check_setting_int(CFG, "Twitter", "twitter_usedm", 0)) USE_TWILIO = bool(check_setting_int(CFG, "Twilio", "use_twilio", 0)) TWILIO_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Twilio", "twilio_notify_onsnatch", 0) ) TWILIO_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Twilio", "twilio_notify_ondownload", 0) ) TWILIO_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Twilio", "twilio_notify_onsubtitledownload", 0) ) TWILIO_PHONE_SID = check_setting_str( CFG, "Twilio", "twilio_phone_sid", "", censor_log=True ) TWILIO_ACCOUNT_SID = check_setting_str( CFG, "Twilio", "twilio_account_sid", "", censor_log=True ) TWILIO_AUTH_TOKEN = check_setting_str( CFG, "Twilio", "twilio_auth_token", "", censor_log=True ) TWILIO_TO_NUMBER = check_setting_str( CFG, "Twilio", "twilio_to_number", "", censor_log=True ) USE_BOXCAR2 = bool(check_setting_int(CFG, "Boxcar2", "use_boxcar2", 0)) BOXCAR2_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Boxcar2", "boxcar2_notify_onsnatch", 0) ) BOXCAR2_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Boxcar2", "boxcar2_notify_ondownload", 0) ) BOXCAR2_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Boxcar2", "boxcar2_notify_onsubtitledownload", 0) ) BOXCAR2_ACCESSTOKEN = check_setting_str( CFG, "Boxcar2", "boxcar2_accesstoken", "", censor_log=True ) USE_PUSHOVER = bool(check_setting_int(CFG, "Pushover", "use_pushover", 0)) PUSHOVER_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Pushover", "pushover_notify_onsnatch", 0) ) PUSHOVER_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Pushover", "pushover_notify_ondownload", 0) ) PUSHOVER_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Pushover", "pushover_notify_onsubtitledownload", 0) ) PUSHOVER_USERKEY = check_setting_str( CFG, "Pushover", "pushover_userkey", "", censor_log=True ) PUSHOVER_APIKEY = check_setting_str( CFG, "Pushover", "pushover_apikey", "", censor_log=True ) PUSHOVER_DEVICE = check_setting_str(CFG, "Pushover", "pushover_device", "") PUSHOVER_SOUND = check_setting_str( CFG, "Pushover", "pushover_sound", "pushover" ) PUSHOVER_PRIORITY = check_setting_str(CFG, "Pushover", "pushover_priority", "0") USE_LIBNOTIFY = bool(check_setting_int(CFG, "Libnotify", "use_libnotify", 0)) LIBNOTIFY_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Libnotify", "libnotify_notify_onsnatch", 0) ) LIBNOTIFY_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Libnotify", "libnotify_notify_ondownload", 0) ) LIBNOTIFY_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int( CFG, "Libnotify", "libnotify_notify_onsubtitledownload", 0 ) ) USE_NMJ = bool(check_setting_int(CFG, "NMJ", "use_nmj", 0)) NMJ_HOST = check_setting_str(CFG, "NMJ", "nmj_host", "") NMJ_DATABASE = check_setting_str(CFG, "NMJ", "nmj_database", "") NMJ_MOUNT = check_setting_str(CFG, "NMJ", "nmj_mount", "") USE_NMJv2 = bool(check_setting_int(CFG, "NMJv2", "use_nmjv2", 0)) NMJv2_HOST = check_setting_str(CFG, "NMJv2", "nmjv2_host", "") NMJv2_DATABASE = check_setting_str(CFG, "NMJv2", "nmjv2_database", "") NMJv2_DBLOC = check_setting_str(CFG, "NMJv2", "nmjv2_dbloc", "") USE_SYNOINDEX = bool(check_setting_int(CFG, "Synology", "use_synoindex", 0)) USE_SYNOLOGYNOTIFIER = bool( check_setting_int(CFG, "SynologyNotifier", "use_synologynotifier", 0) ) SYNOLOGYNOTIFIER_NOTIFY_ONSNATCH = bool( check_setting_int( CFG, "SynologyNotifier", "synologynotifier_notify_onsnatch", 0 ) ) SYNOLOGYNOTIFIER_NOTIFY_ONDOWNLOAD = bool( check_setting_int( CFG, "SynologyNotifier", "synologynotifier_notify_ondownload", 0 ) ) SYNOLOGYNOTIFIER_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int( CFG, "SynologyNotifier", "synologynotifier_notify_onsubtitledownload", 0 ) ) USE_SLACK = bool(check_setting_int(CFG, "Slack", "use_slack", 0)) SLACK_NOTIFY_SNATCH = bool( check_setting_int(CFG, "Slack", "slack_notify_snatch", 0) ) SLACK_NOTIFY_DOWNLOAD = bool( check_setting_int(CFG, "Slack", "slack_notify_download", 0) ) SLACK_WEBHOOK = check_setting_str(CFG, "Slack", "slack_webhook", "") USE_TRAKT = bool(check_setting_int(CFG, "Trakt", "use_trakt", 0)) TRAKT_USERNAME = check_setting_str( CFG, "Trakt", "trakt_username", "", censor_log=True ) TRAKT_ACCESS_TOKEN = check_setting_str( CFG, "Trakt", "trakt_access_token", "", censor_log=True ) TRAKT_REFRESH_TOKEN = check_setting_str( CFG, "Trakt", "trakt_refresh_token", "", censor_log=True ) TRAKT_REMOVE_WATCHLIST = bool( check_setting_int(CFG, "Trakt", "trakt_remove_watchlist", 0) ) TRAKT_REMOVE_SERIESLIST = bool( check_setting_int(CFG, "Trakt", "trakt_remove_serieslist", 0) ) TRAKT_REMOVE_SHOW_FROM_SICKRAGE = bool( check_setting_int(CFG, "Trakt", "trakt_remove_show_from_sickrage", 0) ) TRAKT_SYNC_WATCHLIST = bool( check_setting_int(CFG, "Trakt", "trakt_sync_watchlist", 0) ) TRAKT_METHOD_ADD = check_setting_int(CFG, "Trakt", "trakt_method_add", 0) TRAKT_START_PAUSED = bool( check_setting_int(CFG, "Trakt", "trakt_start_paused", 0) ) TRAKT_USE_RECOMMENDED = bool( check_setting_int(CFG, "Trakt", "trakt_use_recommended", 0) ) TRAKT_SYNC = bool(check_setting_int(CFG, "Trakt", "trakt_sync", 0)) TRAKT_SYNC_REMOVE = bool( check_setting_int(CFG, "Trakt", "trakt_sync_remove", 0) ) TRAKT_DEFAULT_INDEXER = check_setting_int( CFG, "Trakt", "trakt_default_indexer", 1 ) TRAKT_TIMEOUT = check_setting_int(CFG, "Trakt", "trakt_timeout", 30) TRAKT_BLACKLIST_NAME = check_setting_str( CFG, "Trakt", "trakt_blacklist_name", "" ) USE_PYTIVO = bool(check_setting_int(CFG, "pyTivo", "use_pytivo", 0)) PYTIVO_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "pyTivo", "pytivo_notify_onsnatch", 0) ) PYTIVO_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "pyTivo", "pytivo_notify_ondownload", 0) ) PYTIVO_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "pyTivo", "pytivo_notify_onsubtitledownload", 0) ) PYTIVO_UPDATE_LIBRARY = bool( check_setting_int(CFG, "pyTivo", "pyTivo_update_library", 0) ) PYTIVO_HOST = check_setting_str(CFG, "pyTivo", "pytivo_host", "") PYTIVO_SHARE_NAME = check_setting_str(CFG, "pyTivo", "pytivo_share_name", "") PYTIVO_TIVO_NAME = check_setting_str(CFG, "pyTivo", "pytivo_tivo_name", "") USE_NMA = bool(check_setting_int(CFG, "NMA", "use_nma", 0)) NMA_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "NMA", "nma_notify_onsnatch", 0) ) NMA_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "NMA", "nma_notify_ondownload", 0) ) NMA_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "NMA", "nma_notify_onsubtitledownload", 0) ) NMA_API = check_setting_str(CFG, "NMA", "nma_api", "", censor_log=True) NMA_PRIORITY = check_setting_str(CFG, "NMA", "nma_priority", "0") USE_PUSHALOT = bool(check_setting_int(CFG, "Pushalot", "use_pushalot", 0)) PUSHALOT_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Pushalot", "pushalot_notify_onsnatch", 0) ) PUSHALOT_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Pushalot", "pushalot_notify_ondownload", 0) ) PUSHALOT_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Pushalot", "pushalot_notify_onsubtitledownload", 0) ) PUSHALOT_AUTHORIZATIONTOKEN = check_setting_str( CFG, "Pushalot", "pushalot_authorizationtoken", "", censor_log=True ) USE_PUSHBULLET = bool(check_setting_int(CFG, "Pushbullet", "use_pushbullet", 0)) PUSHBULLET_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Pushbullet", "pushbullet_notify_onsnatch", 0) ) PUSHBULLET_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Pushbullet", "pushbullet_notify_ondownload", 0) ) PUSHBULLET_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int( CFG, "Pushbullet", "pushbullet_notify_onsubtitledownload", 0 ) ) PUSHBULLET_API = check_setting_str( CFG, "Pushbullet", "pushbullet_api", "", censor_log=True ) PUSHBULLET_DEVICE = check_setting_str( CFG, "Pushbullet", "pushbullet_device", "" ) PUSHBULLET_CHANNEL = check_setting_str( CFG, "Pushbullet", "pushbullet_channel", "" ) USE_EMAIL = bool(check_setting_int(CFG, "Email", "use_email", 0)) EMAIL_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Email", "email_notify_onsnatch", 0) ) EMAIL_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Email", "email_notify_ondownload", 0) ) EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Email", "email_notify_onsubtitledownload", 0) ) EMAIL_HOST = check_setting_str(CFG, "Email", "email_host", "") EMAIL_PORT = check_setting_int(CFG, "Email", "email_port", 25) EMAIL_TLS = bool(check_setting_int(CFG, "Email", "email_tls", 0)) EMAIL_USER = check_setting_str(CFG, "Email", "email_user", "", censor_log=True) EMAIL_PASSWORD = check_setting_str( CFG, "Email", "email_password", "", censor_log=True ) EMAIL_FROM = check_setting_str(CFG, "Email", "email_from", "") EMAIL_LIST = check_setting_str(CFG, "Email", "email_list", "") EMAIL_SUBJECT = check_setting_str(CFG, "Email", "email_subject", "") USE_SUBTITLES = bool(check_setting_int(CFG, "Subtitles", "use_subtitles", 0)) SUBTITLES_LANGUAGES = check_setting_str( CFG, "Subtitles", "subtitles_languages", "" ).split(",") if SUBTITLES_LANGUAGES[0] == "": SUBTITLES_LANGUAGES = [] SUBTITLES_DIR = check_setting_str(CFG, "Subtitles", "subtitles_dir", "") SUBTITLES_SERVICES_LIST = check_setting_str( CFG, "Subtitles", "SUBTITLES_SERVICES_LIST", "" ).split(",") SUBTITLES_SERVICES_ENABLED = [ int(x) for x in check_setting_str( CFG, "Subtitles", "SUBTITLES_SERVICES_ENABLED", "" ).split("|") if x ] SUBTITLES_DEFAULT = bool( check_setting_int(CFG, "Subtitles", "subtitles_default", 0) ) SUBTITLES_HISTORY = bool( check_setting_int(CFG, "Subtitles", "subtitles_history", 0) ) SUBTITLES_PERFECT_MATCH = bool( check_setting_int(CFG, "Subtitles", "subtitles_perfect_match", 1) ) EMBEDDED_SUBTITLES_ALL = bool( check_setting_int(CFG, "Subtitles", "embedded_subtitles_all", 0) ) SUBTITLES_HEARING_IMPAIRED = bool( check_setting_int(CFG, "Subtitles", "subtitles_hearing_impaired", 0) ) SUBTITLES_FINDER_FREQUENCY = check_setting_int( CFG, "Subtitles", "subtitles_finder_frequency", 1 ) SUBTITLES_MULTI = bool( check_setting_int(CFG, "Subtitles", "subtitles_multi", 1) ) SUBTITLES_KEEP_ONLY_WANTED = bool( check_setting_int(CFG, "Subtitles", "subtitles_keep_only_wanted", 0) ) SUBTITLES_EXTRA_SCRIPTS = [ x.strip() for x in check_setting_str( CFG, "Subtitles", "subtitles_extra_scripts", "" ).split("|") if x.strip() ] ADDIC7ED_USER = check_setting_str( CFG, "Subtitles", "addic7ed_username", "", censor_log=True ) ADDIC7ED_PASS = check_setting_str( CFG, "Subtitles", "addic7ed_password", "", censor_log=True ) ITASA_USER = check_setting_str( CFG, "Subtitles", "itasa_username", "", censor_log=True ) ITASA_PASS = check_setting_str( CFG, "Subtitles", "itasa_password", "", censor_log=True ) LEGENDASTV_USER = check_setting_str( CFG, "Subtitles", "legendastv_username", "", censor_log=True ) LEGENDASTV_PASS = check_setting_str( CFG, "Subtitles", "legendastv_password", "", censor_log=True ) OPENSUBTITLES_USER = check_setting_str( CFG, "Subtitles", "opensubtitles_username", "", censor_log=True ) OPENSUBTITLES_PASS = check_setting_str( CFG, "Subtitles", "opensubtitles_password", "", censor_log=True ) USE_FAILED_DOWNLOADS = bool( check_setting_int(CFG, "FailedDownloads", "use_failed_downloads", 0) ) DELETE_FAILED = bool( check_setting_int(CFG, "FailedDownloads", "delete_failed", 0) ) GIT_PATH = check_setting_str(CFG, "General", "git_path", "") IGNORE_WORDS = check_setting_str(CFG, "General", "ignore_words", IGNORE_WORDS) TRACKERS_LIST = check_setting_str( CFG, "General", "trackers_list", TRACKERS_LIST ) REQUIRE_WORDS = check_setting_str( CFG, "General", "require_words", REQUIRE_WORDS ) IGNORED_SUBS_LIST = check_setting_str( CFG, "General", "ignored_subs_list", IGNORED_SUBS_LIST ) CALENDAR_UNPROTECTED = bool( check_setting_int(CFG, "General", "calendar_unprotected", 0) ) CALENDAR_ICONS = bool(check_setting_int(CFG, "General", "calendar_icons", 0)) NO_RESTART = bool(check_setting_int(CFG, "General", "no_restart", 0)) EXTRA_SCRIPTS = [ x.strip() for x in check_setting_str(CFG, "General", "extra_scripts", "").split("|") if x.strip() ] USE_LISTVIEW = bool(check_setting_int(CFG, "General", "use_listview", 0)) ANIMESUPPORT = False USE_ANIDB = bool(check_setting_int(CFG, "ANIDB", "use_anidb", 0)) ANIDB_USERNAME = check_setting_str( CFG, "ANIDB", "anidb_username", "", censor_log=True ) ANIDB_PASSWORD = check_setting_str( CFG, "ANIDB", "anidb_password", "", censor_log=True ) ANIDB_USE_MYLIST = bool(check_setting_int(CFG, "ANIDB", "anidb_use_mylist", 0)) ANIME_SPLIT_HOME = bool(check_setting_int(CFG, "ANIME", "anime_split_home", 0)) METADATA_KODI = check_setting_str( CFG, "General", "metadata_kodi", "0|0|0|0|0|0|0|0|0|0" ) METADATA_KODI_12PLUS = check_setting_str( CFG, "General", "metadata_kodi_12plus", "0|0|0|0|0|0|0|0|0|0" ) METADATA_MEDIABROWSER = check_setting_str( CFG, "General", "metadata_mediabrowser", "0|0|0|0|0|0|0|0|0|0" ) METADATA_PS3 = check_setting_str( CFG, "General", "metadata_ps3", "0|0|0|0|0|0|0|0|0|0" ) METADATA_WDTV = check_setting_str( CFG, "General", "metadata_wdtv", "0|0|0|0|0|0|0|0|0|0" ) METADATA_TIVO = check_setting_str( CFG, "General", "metadata_tivo", "0|0|0|0|0|0|0|0|0|0" ) METADATA_MEDE8ER = check_setting_str( CFG, "General", "metadata_mede8er", "0|0|0|0|0|0|0|0|0|0" ) HOME_LAYOUT = check_setting_str(CFG, "GUI", "home_layout", "poster") HISTORY_LAYOUT = check_setting_str(CFG, "GUI", "history_layout", "detailed") HISTORY_LIMIT = check_setting_str(CFG, "GUI", "history_limit", "100") DISPLAY_SHOW_SPECIALS = bool( check_setting_int(CFG, "GUI", "display_show_specials", 1) ) COMING_EPS_LAYOUT = check_setting_str(CFG, "GUI", "coming_eps_layout", "banner") COMING_EPS_DISPLAY_PAUSED = bool( check_setting_int(CFG, "GUI", "coming_eps_display_paused", 0) ) COMING_EPS_SORT = check_setting_str(CFG, "GUI", "coming_eps_sort", "date") COMING_EPS_MISSED_RANGE = check_setting_int( CFG, "GUI", "coming_eps_missed_range", 7 ) FUZZY_DATING = bool(check_setting_int(CFG, "GUI", "fuzzy_dating", 0)) TRIM_ZERO = bool(check_setting_int(CFG, "GUI", "trim_zero", 0)) DATE_PRESET = check_setting_str(CFG, "GUI", "date_preset", "%x") TIME_PRESET_W_SECONDS = check_setting_str( CFG, "GUI", "time_preset", "%I:%M:%S %p" ) TIME_PRESET = TIME_PRESET_W_SECONDS.replace(":%S", "") TIMEZONE_DISPLAY = check_setting_str(CFG, "GUI", "timezone_display", "local") POSTER_SORTBY = check_setting_str(CFG, "GUI", "poster_sortby", "name") POSTER_SORTDIR = check_setting_int(CFG, "GUI", "poster_sortdir", 1) DISPLAY_ALL_SEASONS = bool( check_setting_int(CFG, "General", "display_all_seasons", 1) ) # initialize NZB and TORRENT providers providerList = providers.makeProviderList() NEWZNAB_DATA = check_setting_str(CFG, "Newznab", "newznab_data", "") newznabProviderList = NewznabProvider.get_providers_list(NEWZNAB_DATA) TORRENTRSS_DATA = check_setting_str(CFG, "TorrentRss", "torrentrss_data", "") torrentRssProviderList = TorrentRssProvider.get_providers_list(TORRENTRSS_DATA) # dynamically load provider settings for curTorrentProvider in [ curProvider for curProvider in providers.sortedProviderList() if curProvider.provider_type == GenericProvider.TORRENT ]: curTorrentProvider.enabled = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id(), 0, ) ) if hasattr(curTorrentProvider, "custom_url"): curTorrentProvider.custom_url = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_custom_url", "", censor_log=True, ) if hasattr(curTorrentProvider, "api_key"): curTorrentProvider.api_key = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_api_key", "", censor_log=True, ) if hasattr(curTorrentProvider, "hash"): curTorrentProvider.hash = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_hash", "", censor_log=True, ) if hasattr(curTorrentProvider, "digest"): curTorrentProvider.digest = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_digest", "", censor_log=True, ) if hasattr(curTorrentProvider, "username"): curTorrentProvider.username = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_username", "", censor_log=True, ) if hasattr(curTorrentProvider, "password"): curTorrentProvider.password = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_password", "", censor_log=True, ) if hasattr(curTorrentProvider, "passkey"): curTorrentProvider.passkey = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_passkey", "", censor_log=True, ) if hasattr(curTorrentProvider, "pin"): curTorrentProvider.pin = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_pin", "", censor_log=True, ) if hasattr(curTorrentProvider, "confirmed"): curTorrentProvider.confirmed = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_confirmed", 1, ) ) if hasattr(curTorrentProvider, "ranked"): curTorrentProvider.ranked = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_ranked", 1, ) ) if hasattr(curTorrentProvider, "engrelease"): curTorrentProvider.engrelease = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_engrelease", 0, ) ) if hasattr(curTorrentProvider, "onlyspasearch"): curTorrentProvider.onlyspasearch = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_onlyspasearch", 0, ) ) if hasattr(curTorrentProvider, "sorting"): curTorrentProvider.sorting = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_sorting", "seeders", ) if hasattr(curTorrentProvider, "options"): curTorrentProvider.options = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_options", "", ) if hasattr(curTorrentProvider, "ratio"): curTorrentProvider.ratio = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_ratio", "", ) if hasattr(curTorrentProvider, "minseed"): curTorrentProvider.minseed = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_minseed", 1, ) if hasattr(curTorrentProvider, "minleech"): curTorrentProvider.minleech = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_minleech", 0, ) if hasattr(curTorrentProvider, "freeleech"): curTorrentProvider.freeleech = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_freeleech", 0, ) ) if hasattr(curTorrentProvider, "search_mode"): curTorrentProvider.search_mode = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_search_mode", "eponly", ) if hasattr(curTorrentProvider, "search_fallback"): curTorrentProvider.search_fallback = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_search_fallback", 0, ) ) if hasattr(curTorrentProvider, "enable_daily"): curTorrentProvider.enable_daily = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_enable_daily", 1, ) ) if hasattr(curTorrentProvider, "enable_backlog"): curTorrentProvider.enable_backlog = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_enable_backlog", curTorrentProvider.supports_backlog, ) ) if hasattr(curTorrentProvider, "cat"): curTorrentProvider.cat = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_cat", 0, ) if hasattr(curTorrentProvider, "subtitle"): curTorrentProvider.subtitle = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_subtitle", 0, ) ) if hasattr(curTorrentProvider, "cookies"): curTorrentProvider.cookies = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_cookies", "", censor_log=True, ) for curNzbProvider in [ curProvider for curProvider in providers.sortedProviderList() if curProvider.provider_type == GenericProvider.NZB ]: curNzbProvider.enabled = bool( check_setting_int( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id(), 0 ) ) if hasattr(curNzbProvider, "api_key"): curNzbProvider.api_key = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_api_key", "", censor_log=True, ) if hasattr(curNzbProvider, "username"): curNzbProvider.username = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_username", "", censor_log=True, ) if hasattr(curNzbProvider, "search_mode"): curNzbProvider.search_mode = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_search_mode", "eponly", ) if hasattr(curNzbProvider, "search_fallback"): curNzbProvider.search_fallback = bool( check_setting_int( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_search_fallback", 0, ) ) if hasattr(curNzbProvider, "enable_daily"): curNzbProvider.enable_daily = bool( check_setting_int( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_enable_daily", 1, ) ) if hasattr(curNzbProvider, "enable_backlog"): curNzbProvider.enable_backlog = bool( check_setting_int( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_enable_backlog", curNzbProvider.supports_backlog, ) ) if not ek(os.path.isfile, CONFIG_FILE): logger.log( "Unable to find '" + CONFIG_FILE + "', all settings will be default!", logger.DEBUG, ) save_config() # initialize the main SB database main_db_con = db.DBConnection() db.upgradeDatabase(main_db_con, mainDB.InitialSchema) # initialize the cache database cache_db_con = db.DBConnection("cache.db") db.upgradeDatabase(cache_db_con, cache_db.InitialSchema) # initialize the failed downloads database failed_db_con = db.DBConnection("failed.db") db.upgradeDatabase(failed_db_con, failed_db.InitialSchema) # fix up any db problems main_db_con = db.DBConnection() db.sanityCheckDatabase(main_db_con, mainDB.MainSanityCheck) # migrate the config if it needs it migrator = ConfigMigrator(CFG) migrator.migrate_config() # initialize metadata_providers metadata_provider_dict = metadata.get_metadata_generator_dict() for cur_metadata_tuple in [ (METADATA_KODI, metadata.kodi), (METADATA_KODI_12PLUS, metadata.kodi_12plus), (METADATA_MEDIABROWSER, metadata.mediabrowser), (METADATA_PS3, metadata.ps3), (METADATA_WDTV, metadata.wdtv), (METADATA_TIVO, metadata.tivo), (METADATA_MEDE8ER, metadata.mede8er), ]: (cur_metadata_config, cur_metadata_class) = cur_metadata_tuple tmp_provider = cur_metadata_class.metadata_class() tmp_provider.set_config(cur_metadata_config) metadata_provider_dict[tmp_provider.name] = tmp_provider # initialize schedulers # updaters versionCheckScheduler = scheduler.Scheduler( versionChecker.CheckVersion(), cycleTime=datetime.timedelta(hours=UPDATE_FREQUENCY), threadName="CHECKVERSION", silent=False, ) showQueueScheduler = scheduler.Scheduler( show_queue.ShowQueue(), cycleTime=datetime.timedelta(seconds=5), threadName="SHOWQUEUE", ) showUpdateScheduler = scheduler.Scheduler( showUpdater.ShowUpdater(), run_delay=datetime.timedelta(seconds=20), cycleTime=datetime.timedelta(hours=1), start_time=datetime.time(hour=SHOWUPDATE_HOUR), threadName="SHOWUPDATER", ) # searchers searchQueueScheduler = scheduler.Scheduler( search_queue.SearchQueue(), run_delay=datetime.timedelta(seconds=10), cycleTime=datetime.timedelta(seconds=5), threadName="SEARCHQUEUE", ) dailySearchScheduler = scheduler.Scheduler( dailysearcher.DailySearcher(), run_delay=datetime.timedelta(minutes=10), cycleTime=datetime.timedelta(minutes=DAILYSEARCH_FREQUENCY), threadName="DAILYSEARCHER", ) update_interval = datetime.timedelta(minutes=BACKLOG_FREQUENCY) backlogSearchScheduler = searchBacklog.BacklogSearchScheduler( searchBacklog.BacklogSearcher(), cycleTime=update_interval, threadName="BACKLOG", run_delay=update_interval, ) search_intervals = { "15m": 15, "45m": 45, "90m": 90, "4h": 4 * 60, "daily": 24 * 60, } if CHECK_PROPERS_INTERVAL in search_intervals: update_interval = datetime.timedelta( minutes=search_intervals[CHECK_PROPERS_INTERVAL] ) run_at = None else: update_interval = datetime.timedelta(hours=1) run_at = datetime.time(hour=1) # 1 AM properFinderScheduler = scheduler.Scheduler( properFinder.ProperFinder(), cycleTime=update_interval, threadName="FINDPROPERS", start_time=run_at, run_delay=update_interval, silent=not DOWNLOAD_PROPERS, ) # processors postProcessorTaskScheduler = scheduler.Scheduler( post_processing_queue.ProcessingQueue(), run_delay=datetime.timedelta(seconds=5), cycleTime=datetime.timedelta(seconds=5), threadName="POSTPROCESSOR", ) autoPostProcessorScheduler = scheduler.Scheduler( auto_postprocessor.PostProcessor(), run_delay=datetime.timedelta(minutes=5), cycleTime=datetime.timedelta(minutes=AUTOPOSTPROCESSOR_FREQUENCY), threadName="POSTPROCESSOR", silent=not PROCESS_AUTOMATICALLY, ) traktCheckerScheduler = scheduler.Scheduler( traktChecker.TraktChecker(), run_delay=datetime.timedelta(minutes=5), cycleTime=datetime.timedelta(hours=1), threadName="TRAKTCHECKER", silent=not USE_TRAKT, ) subtitlesFinderScheduler = scheduler.Scheduler( subtitles.SubtitlesFinder(), run_delay=datetime.timedelta(minutes=10), cycleTime=datetime.timedelta(hours=SUBTITLES_FINDER_FREQUENCY), threadName="FINDSUBTITLES", silent=not USE_SUBTITLES, ) __INITIALIZED__["0"] = True return True
def initialize(consoleLogging=True): # pylint: disable=too-many-locals, too-many-branches, too-many-statements with INIT_LOCK: # pylint: disable=global-statement global \ BRANCH, \ GIT_RESET, \ GIT_REMOTE, \ GIT_REMOTE_URL, \ CUR_COMMIT_HASH, \ CUR_COMMIT_BRANCH, \ ACTUAL_LOG_DIR, \ LOG_DIR, \ LOG_NR, \ LOG_SIZE, \ WEB_PORT, \ WEB_LOG, \ ENCRYPTION_VERSION, \ ENCRYPTION_SECRET, \ WEB_ROOT, \ WEB_USERNAME, \ WEB_PASSWORD, \ WEB_HOST, \ WEB_IPV6, \ WEB_COOKIE_SECRET, \ WEB_USE_GZIP, \ API_KEY, \ ENABLE_HTTPS, \ HTTPS_CERT, \ HTTPS_KEY, \ HANDLE_REVERSE_PROXY, \ USE_NZBS, \ USE_TORRENTS, \ NZB_METHOD, \ NZB_DIR, \ DOWNLOAD_PROPERS, \ RANDOMIZE_PROVIDERS, \ CHECK_PROPERS_INTERVAL, \ ALLOW_HIGH_PRIORITY, \ SAB_FORCED, \ TORRENT_METHOD, \ NOTIFY_ON_LOGIN, \ SAB_USERNAME, \ SAB_PASSWORD, \ SAB_APIKEY, \ SAB_CATEGORY, \ SAB_CATEGORY_BACKLOG, \ SAB_CATEGORY_ANIME, \ SAB_CATEGORY_ANIME_BACKLOG, \ SAB_HOST, \ NZBGET_USERNAME, \ NZBGET_PASSWORD, \ NZBGET_CATEGORY, \ NZBGET_CATEGORY_BACKLOG, \ NZBGET_CATEGORY_ANIME, \ NZBGET_CATEGORY_ANIME_BACKLOG, \ NZBGET_PRIORITY, \ NZBGET_HOST, \ NZBGET_USE_HTTPS, \ backlogSearchScheduler, \ TORRENT_USERNAME, \ TORRENT_PASSWORD, \ TORRENT_HOST, \ TORRENT_PATH, \ TORRENT_SEED_TIME, \ TORRENT_PAUSED, \ TORRENT_HIGH_BANDWIDTH, \ TORRENT_LABEL, \ TORRENT_LABEL_ANIME, \ TORRENT_VERIFY_CERT, \ TORRENT_RPCURL, \ TORRENT_AUTH_TYPE, \ USE_KODI, \ KODI_ALWAYS_ON, \ KODI_NOTIFY_ONSNATCH, \ KODI_NOTIFY_ONDOWNLOAD, \ KODI_NOTIFY_ONSUBTITLEDOWNLOAD, \ KODI_UPDATE_FULL, \ KODI_UPDATE_ONLYFIRST, \ KODI_UPDATE_LIBRARY, \ KODI_HOST, \ KODI_USERNAME, \ KODI_PASSWORD, \ BACKLOG_FREQUENCY, \ USE_TRAKT, \ TRAKT_USERNAME, \ TRAKT_ACCESS_TOKEN, \ TRAKT_REFRESH_TOKEN, \ TRAKT_REMOVE_WATCHLIST, \ TRAKT_SYNC_WATCHLIST, \ TRAKT_REMOVE_SHOW_FROM_SICKRAGE, \ TRAKT_METHOD_ADD, \ TRAKT_START_PAUSED, \ traktCheckerScheduler, \ TRAKT_USE_RECOMMENDED, \ TRAKT_SYNC, \ TRAKT_SYNC_REMOVE, \ TRAKT_DEFAULT_INDEXER, \ TRAKT_REMOVE_SERIESLIST, \ TRAKT_TIMEOUT, \ TRAKT_BLACKLIST_NAME, \ USE_PLEX_SERVER, \ PLEX_NOTIFY_ONSNATCH, \ PLEX_NOTIFY_ONDOWNLOAD, \ PLEX_NOTIFY_ONSUBTITLEDOWNLOAD, \ PLEX_UPDATE_LIBRARY, \ USE_PLEX_CLIENT, \ PLEX_CLIENT_USERNAME, \ PLEX_CLIENT_PASSWORD, \ PLEX_SERVER_HOST, \ PLEX_SERVER_TOKEN, \ PLEX_CLIENT_HOST, \ PLEX_SERVER_USERNAME, \ PLEX_SERVER_PASSWORD, \ PLEX_SERVER_HTTPS, \ MIN_BACKLOG_FREQUENCY, \ SKIP_REMOVED_FILES, \ ALLOWED_EXTENSIONS, \ USE_EMBY, \ EMBY_HOST, \ EMBY_APIKEY, \ showUpdateScheduler, \ INDEXER_DEFAULT_LANGUAGE, \ EP_DEFAULT_DELETED_STATUS, \ LAUNCH_BROWSER, \ TRASH_REMOVE_SHOW, \ TRASH_ROTATE_LOGS, \ SORT_ARTICLE, \ NEWZNAB_DATA, \ NZBS, \ NZBS_UID, \ NZBS_HASH, \ INDEXER_DEFAULT, \ INDEXER_TIMEOUT, \ USENET_RETENTION, \ TORRENT_DIR, \ QUALITY_DEFAULT, \ FLATTEN_FOLDERS_DEFAULT, \ SUBTITLES_DEFAULT, \ STATUS_DEFAULT, \ STATUS_DEFAULT_AFTER, \ GROWL_NOTIFY_ONSNATCH, \ GROWL_NOTIFY_ONDOWNLOAD, \ GROWL_NOTIFY_ONSUBTITLEDOWNLOAD, \ TWITTER_NOTIFY_ONSNATCH, \ TWITTER_NOTIFY_ONDOWNLOAD, \ TWITTER_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_FREEMOBILE, \ FREEMOBILE_ID, \ FREEMOBILE_APIKEY, \ FREEMOBILE_NOTIFY_ONSNATCH, \ FREEMOBILE_NOTIFY_ONDOWNLOAD, \ FREEMOBILE_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_TELEGRAM, \ TELEGRAM_ID, \ TELEGRAM_APIKEY, \ TELEGRAM_NOTIFY_ONSNATCH, \ TELEGRAM_NOTIFY_ONDOWNLOAD, \ TELEGRAM_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_JOIN, \ JOIN_ID, \ JOIN_NOTIFY_ONSNATCH, \ JOIN_NOTIFY_ONDOWNLOAD, \ JOIN_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_GROWL, \ GROWL_HOST, \ GROWL_PASSWORD, \ USE_PROWL, \ PROWL_NOTIFY_ONSNATCH, \ PROWL_NOTIFY_ONDOWNLOAD, \ PROWL_NOTIFY_ONSUBTITLEDOWNLOAD, \ PROWL_API, \ PROWL_PRIORITY, \ PROWL_MESSAGE_TITLE, \ USE_PYTIVO, \ PYTIVO_NOTIFY_ONSNATCH, \ PYTIVO_NOTIFY_ONDOWNLOAD, \ PYTIVO_NOTIFY_ONSUBTITLEDOWNLOAD, \ PYTIVO_UPDATE_LIBRARY, \ PYTIVO_HOST, \ PYTIVO_SHARE_NAME, \ PYTIVO_TIVO_NAME, \ USE_NMA, \ NMA_NOTIFY_ONSNATCH, \ NMA_NOTIFY_ONDOWNLOAD, \ NMA_NOTIFY_ONSUBTITLEDOWNLOAD, \ NMA_API, \ NMA_PRIORITY, \ USE_PUSHALOT, \ PUSHALOT_NOTIFY_ONSNATCH, \ PUSHALOT_NOTIFY_ONDOWNLOAD, \ PUSHALOT_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHALOT_AUTHORIZATIONTOKEN, \ USE_PUSHBULLET, \ PUSHBULLET_NOTIFY_ONSNATCH, \ PUSHBULLET_NOTIFY_ONDOWNLOAD, \ PUSHBULLET_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHBULLET_API, \ PUSHBULLET_DEVICE, \ PUSHBULLET_CHANNEL, \ versionCheckScheduler, \ VERSION_NOTIFY, \ AUTO_UPDATE, \ NOTIFY_ON_UPDATE, \ PROCESS_AUTOMATICALLY, \ NO_DELETE, \ USE_ICACLS, \ UNPACK, \ CPU_PRESET, \ UNRAR_TOOL, \ ALT_UNRAR_TOOL, \ KEEP_PROCESSED_DIR, \ PROCESS_METHOD, \ DELRARCONTENTS, \ TV_DOWNLOAD_DIR, \ UPDATE_FREQUENCY, \ showQueueScheduler, \ searchQueueScheduler, \ postProcessorTaskScheduler, \ ROOT_DIRS, \ CACHE_DIR, \ ACTUAL_CACHE_DIR, \ TIMEZONE_DISPLAY, \ NAMING_PATTERN, \ NAMING_MULTI_EP, \ NAMING_ANIME_MULTI_EP, \ NAMING_FORCE_FOLDERS, \ NAMING_ABD_PATTERN, \ NAMING_CUSTOM_ABD, \ NAMING_SPORTS_PATTERN, \ NAMING_CUSTOM_SPORTS, \ NAMING_ANIME_PATTERN, \ NAMING_CUSTOM_ANIME, \ NAMING_STRIP_YEAR, \ RENAME_EPISODES, \ AIRDATE_EPISODES, \ FILE_TIMESTAMP_TIMEZONE, \ properFinderScheduler, \ PROVIDER_ORDER, \ autoPostProcessorScheduler, \ providerList, \ newznabProviderList, \ torrentRssProviderList, \ EXTRA_SCRIPTS, \ USE_TWITTER, \ TWITTER_USERNAME, \ TWITTER_PASSWORD, \ TWITTER_PREFIX, \ DAILYSEARCH_FREQUENCY, \ TWITTER_DMTO, \ TWITTER_USEDM, \ USE_TWILIO, \ TWILIO_NOTIFY_ONSNATCH, \ TWILIO_NOTIFY_ONDOWNLOAD, \ TWILIO_NOTIFY_ONSUBTITLEDOWNLOAD, \ TWILIO_PHONE_SID, \ TWILIO_ACCOUNT_SID, \ TWILIO_AUTH_TOKEN, \ TWILIO_TO_NUMBER, \ USE_BOXCAR2, \ BOXCAR2_ACCESSTOKEN, \ BOXCAR2_NOTIFY_ONDOWNLOAD, \ BOXCAR2_NOTIFY_ONSUBTITLEDOWNLOAD, \ BOXCAR2_NOTIFY_ONSNATCH, \ USE_PUSHOVER, \ PUSHOVER_USERKEY, \ PUSHOVER_APIKEY, \ PUSHOVER_DEVICE, \ PUSHOVER_NOTIFY_ONDOWNLOAD, \ PUSHOVER_NOTIFY_ONSUBTITLEDOWNLOAD, \ PUSHOVER_NOTIFY_ONSNATCH, \ PUSHOVER_SOUND, \ PUSHOVER_PRIORITY, \ USE_LIBNOTIFY, \ LIBNOTIFY_NOTIFY_ONSNATCH, \ LIBNOTIFY_NOTIFY_ONDOWNLOAD, \ LIBNOTIFY_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_NMJ, \ NMJ_HOST, \ NMJ_DATABASE, \ NMJ_MOUNT, \ USE_NMJv2, \ NMJv2_HOST, \ NMJv2_DATABASE, \ NMJv2_DBLOC, \ USE_SYNOINDEX, \ USE_SYNOLOGYNOTIFIER, \ SYNOLOGYNOTIFIER_NOTIFY_ONSNATCH, \ SYNOLOGYNOTIFIER_NOTIFY_ONDOWNLOAD, \ SYNOLOGYNOTIFIER_NOTIFY_ONSUBTITLEDOWNLOAD, \ USE_EMAIL, \ EMAIL_HOST, \ EMAIL_PORT, \ EMAIL_TLS, \ EMAIL_USER, \ EMAIL_PASSWORD, \ EMAIL_FROM, \ EMAIL_NOTIFY_ONSNATCH, \ EMAIL_NOTIFY_ONDOWNLOAD, \ EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD, \ EMAIL_LIST, \ EMAIL_SUBJECT, \ USE_LISTVIEW, \ METADATA_KODI, \ METADATA_KODI_12PLUS, \ METADATA_MEDIABROWSER, \ METADATA_PS3, \ metadata_provider_dict, \ NEWZBIN, \ NEWZBIN_USERNAME, \ NEWZBIN_PASSWORD, \ GIT_PATH, \ MOVE_ASSOCIATED_FILES, \ SYNC_FILES, \ POSTPONE_IF_SYNC_FILES, \ dailySearchScheduler, \ NFO_RENAME, \ GUI_NAME, \ HOME_LAYOUT, \ HISTORY_LAYOUT, \ DISPLAY_SHOW_SPECIALS, \ COMING_EPS_LAYOUT, \ COMING_EPS_SORT, \ COMING_EPS_DISPLAY_PAUSED, \ COMING_EPS_MISSED_RANGE, \ FUZZY_DATING, \ TRIM_ZERO, \ DATE_PRESET, \ TIME_PRESET, \ TIME_PRESET_W_SECONDS, \ THEME_NAME, \ POSTER_SORTBY, \ POSTER_SORTDIR, \ HISTORY_LIMIT, \ CREATE_MISSING_SHOW_DIRS, \ ADD_SHOWS_WO_DIR, \ USE_FREE_SPACE_CHECK, \ METADATA_WDTV, \ METADATA_TIVO, \ METADATA_MEDE8ER, \ IGNORE_WORDS, \ TRACKERS_LIST, \ IGNORED_SUBS_LIST, \ REQUIRE_WORDS, \ CALENDAR_UNPROTECTED, \ CALENDAR_ICONS, \ NO_RESTART, \ USE_SUBTITLES, \ SUBTITLES_LANGUAGES, \ SUBTITLES_DIR, \ SUBTITLES_SERVICES_LIST, \ SUBTITLES_SERVICES_ENABLED, \ SUBTITLES_HISTORY, \ SUBTITLES_FINDER_FREQUENCY, \ SUBTITLES_MULTI, \ SUBTITLES_KEEP_ONLY_WANTED, \ EMBEDDED_SUBTITLES_ALL, \ SUBTITLES_EXTRA_SCRIPTS, \ SUBTITLES_PERFECT_MATCH, \ subtitlesFinderScheduler, \ SUBTITLES_HEARING_IMPAIRED, \ ADDIC7ED_USER, \ ADDIC7ED_PASS, \ ITASA_USER, \ ITASA_PASS, \ LEGENDASTV_USER, \ LEGENDASTV_PASS, \ OPENSUBTITLES_USER, \ OPENSUBTITLES_PASS, \ USE_FAILED_DOWNLOADS, \ DELETE_FAILED, \ ANON_REDIRECT, \ LOCALHOST_IP, \ DEBUG, \ DBDEBUG, \ DEFAULT_PAGE, \ PROXY_SETTING, \ AUTOPOSTPROCESSOR_FREQUENCY, \ SHOWUPDATE_HOUR, \ ANIME_DEFAULT, \ NAMING_ANIME, \ ANIMESUPPORT, \ USE_ANIDB, \ ANIDB_USERNAME, \ ANIDB_PASSWORD, \ ANIDB_USE_MYLIST, \ ANIME_SPLIT_HOME, \ SCENE_DEFAULT, \ DOWNLOAD_URL, \ BACKLOG_DAYS, \ GIT_USERNAME, \ GIT_PASSWORD, \ DEVELOPER, \ DISPLAY_ALL_SEASONS, \ SSL_VERIFY, \ NEWS_LAST_READ, \ NEWS_LATEST, \ SOCKET_TIMEOUT, \ SYNOLOGY_DSM_HOST, \ SYNOLOGY_DSM_USERNAME, \ SYNOLOGY_DSM_PASSWORD, \ SYNOLOGY_DSM_PATH, \ GUI_LANG, \ SICKRAGE_BACKGROUND, \ SICKRAGE_BACKGROUND_PATH, \ FANART_BACKGROUND, \ FANART_BACKGROUND_OPACITY, \ USE_SLACK, \ SLACK_NOTIFY_SNATCH, \ SLACK_NOTIFY_DOWNLOAD, \ SLACK_WEBHOOK if __INITIALIZED__: return False CheckSection(CFG, "General") CheckSection(CFG, "Blackhole") CheckSection(CFG, "Newzbin") CheckSection(CFG, "SABnzbd") CheckSection(CFG, "NZBget") CheckSection(CFG, "KODI") CheckSection(CFG, "PLEX") CheckSection(CFG, "Emby") CheckSection(CFG, "Growl") CheckSection(CFG, "Prowl") CheckSection(CFG, "Twitter") CheckSection(CFG, "Boxcar2") CheckSection(CFG, "NMJ") CheckSection(CFG, "NMJv2") CheckSection(CFG, "Synology") CheckSection(CFG, "SynologyNotifier") CheckSection(CFG, "pyTivo") CheckSection(CFG, "NMA") CheckSection(CFG, "Pushalot") CheckSection(CFG, "Pushbullet") CheckSection(CFG, "Subtitles") CheckSection(CFG, "pyTivo") CheckSection(CFG, "Slack") # Need to be before any passwords ENCRYPTION_VERSION = check_setting_int(CFG, "General", "encryption_version", 0) ENCRYPTION_SECRET = check_setting_str( CFG, "General", "encryption_secret", helpers.generateCookieSecret(), censor_log=True, ) # git login info GIT_USERNAME = check_setting_str(CFG, "General", "git_username", "") GIT_PASSWORD = check_setting_str( CFG, "General", "git_password", "", censor_log=True ) DEVELOPER = bool(check_setting_int(CFG, "General", "developer", 0)) # debugging DEBUG = bool(check_setting_int(CFG, "General", "debug", 0)) DBDEBUG = bool(check_setting_int(CFG, "General", "dbdebug", 0)) DEFAULT_PAGE = check_setting_str(CFG, "General", "default_page", "home") if DEFAULT_PAGE not in ("home", "schedule", "history", "news", "IRC"): DEFAULT_PAGE = "home" ACTUAL_LOG_DIR = check_setting_str(CFG, "General", "log_dir", "Logs") LOG_DIR = ek(os.path.normpath, ek(os.path.join, DATA_DIR, ACTUAL_LOG_DIR)) LOG_NR = check_setting_int( CFG, "General", "log_nr", 5 ) # Default to 5 backup file (sickrage.log.x) LOG_SIZE = check_setting_float( CFG, "General", "log_size", 10.0 ) # Default to max 10MB per logfile if LOG_SIZE > 100: LOG_SIZE = 10.0 fileLogging = True if not helpers.makeDir(LOG_DIR): sys.stderr.write("!!! No log folder, logging to screen only!\n") fileLogging = False # init logging logger.init_logging( console_logging=consoleLogging, file_logging=fileLogging, debug_logging=DEBUG, database_logging=DBDEBUG, ) # Initializes sickbeard.gh setup_github() # git reset on update GIT_RESET = bool(check_setting_int(CFG, "General", "git_reset", 1)) # current git branch BRANCH = check_setting_str(CFG, "General", "branch", "") # git_remote GIT_REMOTE = check_setting_str(CFG, "General", "git_remote", "origin") GIT_REMOTE_URL = check_setting_str( CFG, "General", "git_remote_url", "https://github.com/{0}/{1}.git".format(GIT_ORG, GIT_REPO), ) if "sickragetv" in GIT_REMOTE_URL.lower(): GIT_REMOTE_URL = "https://github.com/SickRage/SickRage.git" # current commit hash CUR_COMMIT_HASH = check_setting_str(CFG, "General", "cur_commit_hash", "") # current commit branch CUR_COMMIT_BRANCH = check_setting_str(CFG, "General", "cur_commit_branch", "") ACTUAL_CACHE_DIR = check_setting_str(CFG, "General", "cache_dir", "cache") # fix bad configs due to buggy code if ACTUAL_CACHE_DIR == "None": ACTUAL_CACHE_DIR = "cache" # unless they specify, put the cache dir inside the data dir if not ek(os.path.isabs, ACTUAL_CACHE_DIR): CACHE_DIR = ek(os.path.join, DATA_DIR, ACTUAL_CACHE_DIR) else: CACHE_DIR = ACTUAL_CACHE_DIR if not helpers.makeDir(CACHE_DIR): logger.log( "!!! Creating local cache dir failed, using system default", logger.ERROR, ) CACHE_DIR = None # Check if we need to perform a restore of the cache folder try: restoreDir = ek(os.path.join, DATA_DIR, "restore") if ek(os.path.exists, restoreDir) and ek( os.path.exists, ek(os.path.join, restoreDir, "cache") ): def restoreCache(srcDir, dstDir): def path_leaf(path): head, tail = ek(os.path.split, path) return tail or ek(os.path.basename, head) try: if ek(os.path.isdir, dstDir): bakFilename = "{0}-{1}".format( path_leaf(dstDir), datetime.datetime.strftime( datetime.datetime.now(), "%Y%m%d_%H%M%S" ), ) shutil.move( dstDir, ek( os.path.join, ek(os.path.dirname, dstDir), bakFilename, ), ) shutil.move(srcDir, dstDir) logger.log("Restore: restoring cache successful", logger.INFO) except Exception as e: logger.log( "Restore: restoring cache failed: {0}".format(e), logger.ERROR, ) restoreCache(ek(os.path.join, restoreDir, "cache"), CACHE_DIR) except Exception as e: logger.log( "Restore: restoring cache failed: {0}".format(ex(e)), logger.ERROR ) finally: if ek(os.path.exists, ek(os.path.join, DATA_DIR, "restore")): try: shutil.rmtree(ek(os.path.join, DATA_DIR, "restore")) except Exception as e: logger.log( "Restore: Unable to remove the restore directory: {0}".format( ex(e) ), logger.ERROR, ) for cleanupDir in ["mako", "sessions", "indexers", "rss"]: try: shutil.rmtree(ek(os.path.join, CACHE_DIR, cleanupDir)) except Exception as e: if cleanupDir not in ["rss", "sessions", "indexers"]: logger.log( "Restore: Unable to remove the cache/{0} directory: {1}".format( cleanupDir, ex(e) ), logger.WARNING, ) THEME_NAME = check_setting_str(CFG, "GUI", "theme_name", "dark") SICKRAGE_BACKGROUND = bool( check_setting_int(CFG, "GUI", "sickrage_background", 1) ) SICKRAGE_BACKGROUND_PATH = check_setting_str( CFG, "GUI", "sickrage_background_path", 1 ) FANART_BACKGROUND = bool(check_setting_int(CFG, "GUI", "fanart_background", 1)) FANART_BACKGROUND_OPACITY = check_setting_float( CFG, "GUI", "fanart_background_opacity", 0.4 ) GUI_NAME = check_setting_str(CFG, "GUI", "gui_name", "slick") GUI_LANG = check_setting_str(CFG, "GUI", "language", "") if GUI_LANG: gettext.translation( "messages", LOCALE_DIR, languages=[GUI_LANG], codeset="UTF-8" ).install(unicode=1) else: gettext.install("messages", LOCALE_DIR, unicode=1, codeset="UTF-8") SOCKET_TIMEOUT = check_setting_int(CFG, "General", "socket_timeout", 30) socket.setdefaulttimeout(SOCKET_TIMEOUT) try: WEB_PORT = check_setting_int(CFG, "General", "web_port", 8081) except Exception: WEB_PORT = 8081 if 21 > WEB_PORT > 65535: WEB_PORT = 8081 WEB_HOST = check_setting_str(CFG, "General", "web_host", "0.0.0.0") WEB_IPV6 = bool(check_setting_int(CFG, "General", "web_ipv6", 0)) WEB_ROOT = check_setting_str(CFG, "General", "web_root", "").rstrip("/") WEB_LOG = bool(check_setting_int(CFG, "General", "web_log", 0)) WEB_USERNAME = check_setting_str( CFG, "General", "web_username", "", censor_log=True ) WEB_PASSWORD = check_setting_str( CFG, "General", "web_password", "", censor_log=True ) WEB_COOKIE_SECRET = check_setting_str( CFG, "General", "web_cookie_secret", helpers.generateCookieSecret(), censor_log=True, ) if not WEB_COOKIE_SECRET: WEB_COOKIE_SECRET = helpers.generateCookieSecret() WEB_USE_GZIP = bool(check_setting_int(CFG, "General", "web_use_gzip", 1)) SSL_VERIFY = bool(check_setting_int(CFG, "General", "ssl_verify", 1)) INDEXER_DEFAULT_LANGUAGE = check_setting_str( CFG, "General", "indexerDefaultLang", "en" ) EP_DEFAULT_DELETED_STATUS = check_setting_int( CFG, "General", "ep_default_deleted_status", 6 ) LAUNCH_BROWSER = bool(check_setting_int(CFG, "General", "launch_browser", 1)) DOWNLOAD_URL = check_setting_str(CFG, "General", "download_url", "") LOCALHOST_IP = check_setting_str(CFG, "General", "localhost_ip", "") CPU_PRESET = check_setting_str(CFG, "General", "cpu_preset", "NORMAL") ANON_REDIRECT = check_setting_str( CFG, "General", "anon_redirect", "http://dereferer.org/?" ) PROXY_SETTING = check_setting_str(CFG, "General", "proxy_setting", "") # attempt to help prevent users from breaking links by using a bad url if not ANON_REDIRECT.endswith("?"): ANON_REDIRECT = "" TRASH_REMOVE_SHOW = bool( check_setting_int(CFG, "General", "trash_remove_show", 0) ) TRASH_ROTATE_LOGS = bool( check_setting_int(CFG, "General", "trash_rotate_logs", 0) ) SORT_ARTICLE = bool(check_setting_int(CFG, "General", "sort_article", 0)) API_KEY = check_setting_str(CFG, "General", "api_key", "", censor_log=True) ENABLE_HTTPS = bool(check_setting_int(CFG, "General", "enable_https", 0)) NOTIFY_ON_LOGIN = bool(check_setting_int(CFG, "General", "notify_on_login", 0)) HTTPS_CERT = check_setting_str(CFG, "General", "https_cert", "server.crt") HTTPS_KEY = check_setting_str(CFG, "General", "https_key", "server.key") HANDLE_REVERSE_PROXY = bool( check_setting_int(CFG, "General", "handle_reverse_proxy", 0) ) ROOT_DIRS = check_setting_str(CFG, "General", "root_dirs", "") if not re.match(r"\d+\|[^|]+(?:\|[^|]+)*", ROOT_DIRS): ROOT_DIRS = "" QUALITY_DEFAULT = check_setting_int(CFG, "General", "quality_default", SD) STATUS_DEFAULT = check_setting_int(CFG, "General", "status_default", SKIPPED) STATUS_DEFAULT_AFTER = check_setting_int( CFG, "General", "status_default_after", WANTED ) VERSION_NOTIFY = bool(check_setting_int(CFG, "General", "version_notify", 1)) AUTO_UPDATE = bool(check_setting_int(CFG, "General", "auto_update", 0)) NOTIFY_ON_UPDATE = bool( check_setting_int(CFG, "General", "notify_on_update", 1) ) FLATTEN_FOLDERS_DEFAULT = bool( check_setting_int(CFG, "General", "flatten_folders_default", 0) ) INDEXER_DEFAULT = check_setting_int(CFG, "General", "indexer_default", 0) INDEXER_TIMEOUT = check_setting_int(CFG, "General", "indexer_timeout", 20) ANIME_DEFAULT = bool(check_setting_int(CFG, "General", "anime_default", 0)) SCENE_DEFAULT = bool(check_setting_int(CFG, "General", "scene_default", 0)) PROVIDER_ORDER = check_setting_str(CFG, "General", "provider_order", "").split() NAMING_PATTERN = check_setting_str( CFG, "General", "naming_pattern", "Season %0S/%SN - S%0SE%0E - %EN" ) NAMING_ABD_PATTERN = check_setting_str( CFG, "General", "naming_abd_pattern", "%SN - %A.D - %EN" ) NAMING_CUSTOM_ABD = bool( check_setting_int(CFG, "General", "naming_custom_abd", 0) ) NAMING_SPORTS_PATTERN = check_setting_str( CFG, "General", "naming_sports_pattern", "%SN - %A-D - %EN" ) NAMING_ANIME_PATTERN = check_setting_str( CFG, "General", "naming_anime_pattern", "Season %0S/%SN - S%0SE%0E - %EN" ) NAMING_ANIME = check_setting_int(CFG, "General", "naming_anime", 3) NAMING_CUSTOM_SPORTS = bool( check_setting_int(CFG, "General", "naming_custom_sports", 0) ) NAMING_CUSTOM_ANIME = bool( check_setting_int(CFG, "General", "naming_custom_anime", 0) ) NAMING_MULTI_EP = check_setting_int(CFG, "General", "naming_multi_ep", 1) NAMING_ANIME_MULTI_EP = check_setting_int( CFG, "General", "naming_anime_multi_ep", 1 ) NAMING_FORCE_FOLDERS = naming.check_force_season_folders() NAMING_STRIP_YEAR = bool( check_setting_int(CFG, "General", "naming_strip_year", 0) ) USE_NZBS = bool(check_setting_int(CFG, "General", "use_nzbs", 0)) USE_TORRENTS = bool(check_setting_int(CFG, "General", "use_torrents", 1)) NZB_METHOD = check_setting_str(CFG, "General", "nzb_method", "blackhole") if NZB_METHOD not in ("blackhole", "sabnzbd", "nzbget", "download_station"): NZB_METHOD = "blackhole" TORRENT_METHOD = check_setting_str( CFG, "General", "torrent_method", "blackhole" ) if TORRENT_METHOD not in ( "blackhole", "utorrent", "transmission", "deluge", "deluged", "download_station", "rtorrent", "qbittorrent", "mlnet", "putio", ): TORRENT_METHOD = "blackhole" DOWNLOAD_PROPERS = bool( check_setting_int(CFG, "General", "download_propers", 1) ) CHECK_PROPERS_INTERVAL = check_setting_str( CFG, "General", "check_propers_interval", "" ) if CHECK_PROPERS_INTERVAL not in ("15m", "45m", "90m", "4h", "daily"): CHECK_PROPERS_INTERVAL = "daily" RANDOMIZE_PROVIDERS = bool( check_setting_int(CFG, "General", "randomize_providers", 0) ) ALLOW_HIGH_PRIORITY = bool( check_setting_int(CFG, "General", "allow_high_priority", 1) ) SKIP_REMOVED_FILES = bool( check_setting_int(CFG, "General", "skip_removed_files", 0) ) ALLOWED_EXTENSIONS = check_setting_str( CFG, "General", "allowed_extensions", ALLOWED_EXTENSIONS ) USENET_RETENTION = check_setting_int(CFG, "General", "usenet_retention", 500) AUTOPOSTPROCESSOR_FREQUENCY = check_setting_int( CFG, "General", "autopostprocessor_frequency", DEFAULT_AUTOPOSTPROCESSOR_FREQUENCY, ) if AUTOPOSTPROCESSOR_FREQUENCY < MIN_AUTOPOSTPROCESSOR_FREQUENCY: AUTOPOSTPROCESSOR_FREQUENCY = MIN_AUTOPOSTPROCESSOR_FREQUENCY DAILYSEARCH_FREQUENCY = check_setting_int( CFG, "General", "dailysearch_frequency", DEFAULT_DAILYSEARCH_FREQUENCY ) if DAILYSEARCH_FREQUENCY < MIN_DAILYSEARCH_FREQUENCY: DAILYSEARCH_FREQUENCY = MIN_DAILYSEARCH_FREQUENCY MIN_BACKLOG_FREQUENCY = get_backlog_cycle_time() BACKLOG_FREQUENCY = check_setting_int( CFG, "General", "backlog_frequency", DEFAULT_BACKLOG_FREQUENCY ) if BACKLOG_FREQUENCY < MIN_BACKLOG_FREQUENCY: BACKLOG_FREQUENCY = MIN_BACKLOG_FREQUENCY UPDATE_FREQUENCY = check_setting_int( CFG, "General", "update_frequency", DEFAULT_UPDATE_FREQUENCY ) if UPDATE_FREQUENCY < MIN_UPDATE_FREQUENCY: UPDATE_FREQUENCY = MIN_UPDATE_FREQUENCY SHOWUPDATE_HOUR = check_setting_int( CFG, "General", "showupdate_hour", DEFAULT_SHOWUPDATE_HOUR ) if SHOWUPDATE_HOUR > 23: SHOWUPDATE_HOUR = 0 elif SHOWUPDATE_HOUR < 0: SHOWUPDATE_HOUR = 0 BACKLOG_DAYS = check_setting_int(CFG, "General", "backlog_days", 7) NEWS_LAST_READ = check_setting_str( CFG, "General", "news_last_read", "1970-01-01" ) NEWS_LATEST = NEWS_LAST_READ NZB_DIR = check_setting_str(CFG, "Blackhole", "nzb_dir", "") TORRENT_DIR = check_setting_str(CFG, "Blackhole", "torrent_dir", "") TV_DOWNLOAD_DIR = check_setting_str(CFG, "General", "tv_download_dir", "") PROCESS_AUTOMATICALLY = bool( check_setting_int(CFG, "General", "process_automatically", 0) ) NO_DELETE = bool(check_setting_int(CFG, "General", "no_delete", 0)) USE_ICACLS = bool(check_setting_int(CFG, "General", "use_icacls", 1)) UNPACK = bool(check_setting_int(CFG, "General", "unpack", 0)) UNRAR_TOOL = check_setting_str(CFG, "General", "unrar_tool", rarfile.UNRAR_TOOL) ALT_UNRAR_TOOL = check_setting_str( CFG, "General", "alt_unrar_tool", rarfile.ALT_TOOL ) RENAME_EPISODES = bool(check_setting_int(CFG, "General", "rename_episodes", 1)) AIRDATE_EPISODES = bool( check_setting_int(CFG, "General", "airdate_episodes", 0) ) FILE_TIMESTAMP_TIMEZONE = check_setting_str( CFG, "General", "file_timestamp_timezone", "network" ) KEEP_PROCESSED_DIR = bool( check_setting_int(CFG, "General", "keep_processed_dir", 1) ) PROCESS_METHOD = check_setting_str( CFG, "General", "process_method", "copy" if KEEP_PROCESSED_DIR else "move" ) DELRARCONTENTS = bool(check_setting_int(CFG, "General", "del_rar_contents", 0)) MOVE_ASSOCIATED_FILES = bool( check_setting_int(CFG, "General", "move_associated_files", 0) ) POSTPONE_IF_SYNC_FILES = bool( check_setting_int(CFG, "General", "postpone_if_sync_files", 1) ) SYNC_FILES = check_setting_str(CFG, "General", "sync_files", SYNC_FILES) NFO_RENAME = bool(check_setting_int(CFG, "General", "nfo_rename", 1)) CREATE_MISSING_SHOW_DIRS = bool( check_setting_int(CFG, "General", "create_missing_show_dirs", 0) ) ADD_SHOWS_WO_DIR = bool( check_setting_int(CFG, "General", "add_shows_wo_dir", 0) ) USE_FREE_SPACE_CHECK = bool( check_setting_int(CFG, "General", "use_free_space_check", 1) ) NZBS = bool(check_setting_int(CFG, "NZBs", "nzbs", 0)) NZBS_UID = check_setting_str(CFG, "NZBs", "nzbs_uid", "", censor_log=True) NZBS_HASH = check_setting_str(CFG, "NZBs", "nzbs_hash", "", censor_log=True) NEWZBIN = bool(check_setting_int(CFG, "Newzbin", "newzbin", 0)) NEWZBIN_USERNAME = check_setting_str( CFG, "Newzbin", "newzbin_username", "", censor_log=True ) NEWZBIN_PASSWORD = check_setting_str( CFG, "Newzbin", "newzbin_password", "", censor_log=True ) SAB_USERNAME = check_setting_str( CFG, "SABnzbd", "sab_username", "", censor_log=True ) SAB_PASSWORD = check_setting_str( CFG, "SABnzbd", "sab_password", "", censor_log=True ) SAB_APIKEY = check_setting_str( CFG, "SABnzbd", "sab_apikey", "", censor_log=True ) SAB_CATEGORY = check_setting_str(CFG, "SABnzbd", "sab_category", "tv") SAB_CATEGORY_BACKLOG = check_setting_str( CFG, "SABnzbd", "sab_category_backlog", SAB_CATEGORY ) SAB_CATEGORY_ANIME = check_setting_str( CFG, "SABnzbd", "sab_category_anime", "anime" ) SAB_CATEGORY_ANIME_BACKLOG = check_setting_str( CFG, "SABnzbd", "sab_category_anime_backlog", SAB_CATEGORY_ANIME ) SAB_HOST = check_setting_str(CFG, "SABnzbd", "sab_host", "") SAB_FORCED = bool(check_setting_int(CFG, "SABnzbd", "sab_forced", 0)) NZBGET_USERNAME = check_setting_str( CFG, "NZBget", "nzbget_username", "nzbget", censor_log=True ) NZBGET_PASSWORD = check_setting_str( CFG, "NZBget", "nzbget_password", "tegbzn6789", censor_log=True ) NZBGET_CATEGORY = check_setting_str(CFG, "NZBget", "nzbget_category", "tv") NZBGET_CATEGORY_BACKLOG = check_setting_str( CFG, "NZBget", "nzbget_category_backlog", NZBGET_CATEGORY ) NZBGET_CATEGORY_ANIME = check_setting_str( CFG, "NZBget", "nzbget_category_anime", "anime" ) NZBGET_CATEGORY_ANIME_BACKLOG = check_setting_str( CFG, "NZBget", "nzbget_category_anime_backlog", NZBGET_CATEGORY_ANIME ) NZBGET_HOST = check_setting_str(CFG, "NZBget", "nzbget_host", "") NZBGET_USE_HTTPS = bool(check_setting_int(CFG, "NZBget", "nzbget_use_https", 0)) NZBGET_PRIORITY = check_setting_int(CFG, "NZBget", "nzbget_priority", 100) TORRENT_USERNAME = check_setting_str( CFG, "TORRENT", "torrent_username", "", censor_log=True ) TORRENT_PASSWORD = check_setting_str( CFG, "TORRENT", "torrent_password", "", censor_log=True ) TORRENT_HOST = check_setting_str(CFG, "TORRENT", "torrent_host", "") TORRENT_PATH = check_setting_str(CFG, "TORRENT", "torrent_path", "") TORRENT_SEED_TIME = check_setting_int(CFG, "TORRENT", "torrent_seed_time", 0) TORRENT_PAUSED = bool(check_setting_int(CFG, "TORRENT", "torrent_paused", 0)) TORRENT_HIGH_BANDWIDTH = bool( check_setting_int(CFG, "TORRENT", "torrent_high_bandwidth", 0) ) TORRENT_LABEL = check_setting_str(CFG, "TORRENT", "torrent_label", "") TORRENT_LABEL_ANIME = check_setting_str( CFG, "TORRENT", "torrent_label_anime", "" ) TORRENT_VERIFY_CERT = bool( check_setting_int(CFG, "TORRENT", "torrent_verify_cert", 0) ) TORRENT_RPCURL = check_setting_str( CFG, "TORRENT", "torrent_rpcurl", "transmission" ) TORRENT_AUTH_TYPE = check_setting_str(CFG, "TORRENT", "torrent_auth_type", "") SYNOLOGY_DSM_HOST = check_setting_str(CFG, "Synology", "host", "") SYNOLOGY_DSM_USERNAME = check_setting_str( CFG, "Synology", "username", "", censor_log=True ) SYNOLOGY_DSM_PASSWORD = check_setting_str( CFG, "Synology", "password", "", censor_log=True ) SYNOLOGY_DSM_PATH = check_setting_str(CFG, "Synology", "path", "") USE_KODI = bool(check_setting_int(CFG, "KODI", "use_kodi", 0)) KODI_ALWAYS_ON = bool(check_setting_int(CFG, "KODI", "kodi_always_on", 1)) KODI_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "KODI", "kodi_notify_onsnatch", 0) ) KODI_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "KODI", "kodi_notify_ondownload", 0) ) KODI_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "KODI", "kodi_notify_onsubtitledownload", 0) ) KODI_UPDATE_LIBRARY = bool( check_setting_int(CFG, "KODI", "kodi_update_library", 0) ) KODI_UPDATE_FULL = bool(check_setting_int(CFG, "KODI", "kodi_update_full", 0)) KODI_UPDATE_ONLYFIRST = bool( check_setting_int(CFG, "KODI", "kodi_update_onlyfirst", 0) ) KODI_HOST = check_setting_str(CFG, "KODI", "kodi_host", "") KODI_USERNAME = check_setting_str( CFG, "KODI", "kodi_username", "", censor_log=True ) KODI_PASSWORD = check_setting_str( CFG, "KODI", "kodi_password", "", censor_log=True ) USE_PLEX_SERVER = bool(check_setting_int(CFG, "Plex", "use_plex_server", 0)) PLEX_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Plex", "plex_notify_onsnatch", 0) ) PLEX_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Plex", "plex_notify_ondownload", 0) ) PLEX_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Plex", "plex_notify_onsubtitledownload", 0) ) PLEX_UPDATE_LIBRARY = bool( check_setting_int(CFG, "Plex", "plex_update_library", 0) ) PLEX_SERVER_HOST = check_setting_str(CFG, "Plex", "plex_server_host", "") PLEX_SERVER_TOKEN = check_setting_str(CFG, "Plex", "plex_server_token", "") PLEX_CLIENT_HOST = check_setting_str(CFG, "Plex", "plex_client_host", "") PLEX_SERVER_USERNAME = check_setting_str( CFG, "Plex", "plex_server_username", "", censor_log=True ) PLEX_SERVER_PASSWORD = check_setting_str( CFG, "Plex", "plex_server_password", "", censor_log=True ) USE_PLEX_CLIENT = bool(check_setting_int(CFG, "Plex", "use_plex_client", 0)) PLEX_CLIENT_USERNAME = check_setting_str( CFG, "Plex", "plex_client_username", "", censor_log=True ) PLEX_CLIENT_PASSWORD = check_setting_str( CFG, "Plex", "plex_client_password", "", censor_log=True ) PLEX_SERVER_HTTPS = bool(check_setting_int(CFG, "Plex", "plex_server_https", 0)) USE_EMBY = bool(check_setting_int(CFG, "Emby", "use_emby", 0)) EMBY_HOST = check_setting_str(CFG, "Emby", "emby_host", "") EMBY_APIKEY = check_setting_str(CFG, "Emby", "emby_apikey", "") USE_GROWL = bool(check_setting_int(CFG, "Growl", "use_growl", 0)) GROWL_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Growl", "growl_notify_onsnatch", 0) ) GROWL_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Growl", "growl_notify_ondownload", 0) ) GROWL_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Growl", "growl_notify_onsubtitledownload", 0) ) GROWL_HOST = check_setting_str(CFG, "Growl", "growl_host", "") GROWL_PASSWORD = check_setting_str( CFG, "Growl", "growl_password", "", censor_log=True ) USE_FREEMOBILE = bool(check_setting_int(CFG, "FreeMobile", "use_freemobile", 0)) FREEMOBILE_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "FreeMobile", "freemobile_notify_onsnatch", 0) ) FREEMOBILE_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "FreeMobile", "freemobile_notify_ondownload", 0) ) FREEMOBILE_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int( CFG, "FreeMobile", "freemobile_notify_onsubtitledownload", 0 ) ) FREEMOBILE_ID = check_setting_str(CFG, "FreeMobile", "freemobile_id", "") FREEMOBILE_APIKEY = check_setting_str( CFG, "FreeMobile", "freemobile_apikey", "" ) USE_TELEGRAM = bool(check_setting_int(CFG, "Telegram", "use_telegram", 0)) TELEGRAM_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Telegram", "telegram_notify_onsnatch", 0) ) TELEGRAM_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Telegram", "telegram_notify_ondownload", 0) ) TELEGRAM_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Telegram", "telegram_notify_onsubtitledownload", 0) ) TELEGRAM_ID = check_setting_str(CFG, "Telegram", "telegram_id", "") TELEGRAM_APIKEY = check_setting_str(CFG, "Telegram", "telegram_apikey", "") USE_JOIN = bool(check_setting_int(CFG, "Join", "use_join", 0)) JOIN_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Join", "join_notify_onsnatch", 0) ) JOIN_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Join", "join_notify_ondownload", 0) ) JOIN_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Join", "join_notify_onsubtitledownload", 0) ) JOIN_ID = check_setting_str(CFG, "Join", "join_id", "") USE_PROWL = bool(check_setting_int(CFG, "Prowl", "use_prowl", 0)) PROWL_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Prowl", "prowl_notify_onsnatch", 0) ) PROWL_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Prowl", "prowl_notify_ondownload", 0) ) PROWL_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Prowl", "prowl_notify_onsubtitledownload", 0) ) PROWL_API = check_setting_str(CFG, "Prowl", "prowl_api", "", censor_log=True) PROWL_PRIORITY = check_setting_str(CFG, "Prowl", "prowl_priority", "0") PROWL_MESSAGE_TITLE = check_setting_str( CFG, "Prowl", "prowl_message_title", "SickRage" ) USE_TWITTER = bool(check_setting_int(CFG, "Twitter", "use_twitter", 0)) TWITTER_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Twitter", "twitter_notify_onsnatch", 0) ) TWITTER_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Twitter", "twitter_notify_ondownload", 0) ) TWITTER_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Twitter", "twitter_notify_onsubtitledownload", 0) ) TWITTER_USERNAME = check_setting_str( CFG, "Twitter", "twitter_username", "", censor_log=True ) TWITTER_PASSWORD = check_setting_str( CFG, "Twitter", "twitter_password", "", censor_log=True ) TWITTER_PREFIX = check_setting_str(CFG, "Twitter", "twitter_prefix", GIT_REPO) TWITTER_DMTO = check_setting_str(CFG, "Twitter", "twitter_dmto", "") TWITTER_USEDM = bool(check_setting_int(CFG, "Twitter", "twitter_usedm", 0)) USE_TWILIO = bool(check_setting_int(CFG, "Twilio", "use_twilio", 0)) TWILIO_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Twilio", "twilio_notify_onsnatch", 0) ) TWILIO_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Twilio", "twilio_notify_ondownload", 0) ) TWILIO_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Twilio", "twilio_notify_onsubtitledownload", 0) ) TWILIO_PHONE_SID = check_setting_str( CFG, "Twilio", "twilio_phone_sid", "", censor_log=True ) TWILIO_ACCOUNT_SID = check_setting_str( CFG, "Twilio", "twilio_account_sid", "", censor_log=True ) TWILIO_AUTH_TOKEN = check_setting_str( CFG, "Twilio", "twilio_auth_token", "", censor_log=True ) TWILIO_TO_NUMBER = check_setting_str( CFG, "Twilio", "twilio_to_number", "", censor_log=True ) USE_BOXCAR2 = bool(check_setting_int(CFG, "Boxcar2", "use_boxcar2", 0)) BOXCAR2_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Boxcar2", "boxcar2_notify_onsnatch", 0) ) BOXCAR2_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Boxcar2", "boxcar2_notify_ondownload", 0) ) BOXCAR2_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Boxcar2", "boxcar2_notify_onsubtitledownload", 0) ) BOXCAR2_ACCESSTOKEN = check_setting_str( CFG, "Boxcar2", "boxcar2_accesstoken", "", censor_log=True ) USE_PUSHOVER = bool(check_setting_int(CFG, "Pushover", "use_pushover", 0)) PUSHOVER_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Pushover", "pushover_notify_onsnatch", 0) ) PUSHOVER_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Pushover", "pushover_notify_ondownload", 0) ) PUSHOVER_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Pushover", "pushover_notify_onsubtitledownload", 0) ) PUSHOVER_USERKEY = check_setting_str( CFG, "Pushover", "pushover_userkey", "", censor_log=True ) PUSHOVER_APIKEY = check_setting_str( CFG, "Pushover", "pushover_apikey", "", censor_log=True ) PUSHOVER_DEVICE = check_setting_str(CFG, "Pushover", "pushover_device", "") PUSHOVER_SOUND = check_setting_str( CFG, "Pushover", "pushover_sound", "pushover" ) PUSHOVER_PRIORITY = check_setting_str(CFG, "Pushover", "pushover_priority", "0") USE_LIBNOTIFY = bool(check_setting_int(CFG, "Libnotify", "use_libnotify", 0)) LIBNOTIFY_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Libnotify", "libnotify_notify_onsnatch", 0) ) LIBNOTIFY_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Libnotify", "libnotify_notify_ondownload", 0) ) LIBNOTIFY_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int( CFG, "Libnotify", "libnotify_notify_onsubtitledownload", 0 ) ) USE_NMJ = bool(check_setting_int(CFG, "NMJ", "use_nmj", 0)) NMJ_HOST = check_setting_str(CFG, "NMJ", "nmj_host", "") NMJ_DATABASE = check_setting_str(CFG, "NMJ", "nmj_database", "") NMJ_MOUNT = check_setting_str(CFG, "NMJ", "nmj_mount", "") USE_NMJv2 = bool(check_setting_int(CFG, "NMJv2", "use_nmjv2", 0)) NMJv2_HOST = check_setting_str(CFG, "NMJv2", "nmjv2_host", "") NMJv2_DATABASE = check_setting_str(CFG, "NMJv2", "nmjv2_database", "") NMJv2_DBLOC = check_setting_str(CFG, "NMJv2", "nmjv2_dbloc", "") USE_SYNOINDEX = bool(check_setting_int(CFG, "Synology", "use_synoindex", 0)) USE_SYNOLOGYNOTIFIER = bool( check_setting_int(CFG, "SynologyNotifier", "use_synologynotifier", 0) ) SYNOLOGYNOTIFIER_NOTIFY_ONSNATCH = bool( check_setting_int( CFG, "SynologyNotifier", "synologynotifier_notify_onsnatch", 0 ) ) SYNOLOGYNOTIFIER_NOTIFY_ONDOWNLOAD = bool( check_setting_int( CFG, "SynologyNotifier", "synologynotifier_notify_ondownload", 0 ) ) SYNOLOGYNOTIFIER_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int( CFG, "SynologyNotifier", "synologynotifier_notify_onsubtitledownload", 0 ) ) USE_SLACK = bool(check_setting_int(CFG, "Slack", "use_slack", 0)) SLACK_NOTIFY_SNATCH = bool( check_setting_int(CFG, "Slack", "slack_notify_snatch", 0) ) SLACK_NOTIFY_DOWNLOAD = bool( check_setting_int(CFG, "Slack", "slack_notify_download", 0) ) SLACK_WEBHOOK = check_setting_str(CFG, "Slack", "slack_webhook", "") USE_TRAKT = bool(check_setting_int(CFG, "Trakt", "use_trakt", 0)) TRAKT_USERNAME = check_setting_str( CFG, "Trakt", "trakt_username", "", censor_log=True ) TRAKT_ACCESS_TOKEN = check_setting_str( CFG, "Trakt", "trakt_access_token", "", censor_log=True ) TRAKT_REFRESH_TOKEN = check_setting_str( CFG, "Trakt", "trakt_refresh_token", "", censor_log=True ) TRAKT_REMOVE_WATCHLIST = bool( check_setting_int(CFG, "Trakt", "trakt_remove_watchlist", 0) ) TRAKT_REMOVE_SERIESLIST = bool( check_setting_int(CFG, "Trakt", "trakt_remove_serieslist", 0) ) TRAKT_REMOVE_SHOW_FROM_SICKRAGE = bool( check_setting_int(CFG, "Trakt", "trakt_remove_show_from_sickrage", 0) ) TRAKT_SYNC_WATCHLIST = bool( check_setting_int(CFG, "Trakt", "trakt_sync_watchlist", 0) ) TRAKT_METHOD_ADD = check_setting_int(CFG, "Trakt", "trakt_method_add", 0) TRAKT_START_PAUSED = bool( check_setting_int(CFG, "Trakt", "trakt_start_paused", 0) ) TRAKT_USE_RECOMMENDED = bool( check_setting_int(CFG, "Trakt", "trakt_use_recommended", 0) ) TRAKT_SYNC = bool(check_setting_int(CFG, "Trakt", "trakt_sync", 0)) TRAKT_SYNC_REMOVE = bool( check_setting_int(CFG, "Trakt", "trakt_sync_remove", 0) ) TRAKT_DEFAULT_INDEXER = check_setting_int( CFG, "Trakt", "trakt_default_indexer", 1 ) TRAKT_TIMEOUT = check_setting_int(CFG, "Trakt", "trakt_timeout", 30) TRAKT_BLACKLIST_NAME = check_setting_str( CFG, "Trakt", "trakt_blacklist_name", "" ) USE_PYTIVO = bool(check_setting_int(CFG, "pyTivo", "use_pytivo", 0)) PYTIVO_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "pyTivo", "pytivo_notify_onsnatch", 0) ) PYTIVO_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "pyTivo", "pytivo_notify_ondownload", 0) ) PYTIVO_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "pyTivo", "pytivo_notify_onsubtitledownload", 0) ) PYTIVO_UPDATE_LIBRARY = bool( check_setting_int(CFG, "pyTivo", "pyTivo_update_library", 0) ) PYTIVO_HOST = check_setting_str(CFG, "pyTivo", "pytivo_host", "") PYTIVO_SHARE_NAME = check_setting_str(CFG, "pyTivo", "pytivo_share_name", "") PYTIVO_TIVO_NAME = check_setting_str(CFG, "pyTivo", "pytivo_tivo_name", "") USE_NMA = bool(check_setting_int(CFG, "NMA", "use_nma", 0)) NMA_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "NMA", "nma_notify_onsnatch", 0) ) NMA_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "NMA", "nma_notify_ondownload", 0) ) NMA_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "NMA", "nma_notify_onsubtitledownload", 0) ) NMA_API = check_setting_str(CFG, "NMA", "nma_api", "", censor_log=True) NMA_PRIORITY = check_setting_str(CFG, "NMA", "nma_priority", "0") USE_PUSHALOT = bool(check_setting_int(CFG, "Pushalot", "use_pushalot", 0)) PUSHALOT_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Pushalot", "pushalot_notify_onsnatch", 0) ) PUSHALOT_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Pushalot", "pushalot_notify_ondownload", 0) ) PUSHALOT_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Pushalot", "pushalot_notify_onsubtitledownload", 0) ) PUSHALOT_AUTHORIZATIONTOKEN = check_setting_str( CFG, "Pushalot", "pushalot_authorizationtoken", "", censor_log=True ) USE_PUSHBULLET = bool(check_setting_int(CFG, "Pushbullet", "use_pushbullet", 0)) PUSHBULLET_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Pushbullet", "pushbullet_notify_onsnatch", 0) ) PUSHBULLET_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Pushbullet", "pushbullet_notify_ondownload", 0) ) PUSHBULLET_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int( CFG, "Pushbullet", "pushbullet_notify_onsubtitledownload", 0 ) ) PUSHBULLET_API = check_setting_str( CFG, "Pushbullet", "pushbullet_api", "", censor_log=True ) PUSHBULLET_DEVICE = check_setting_str( CFG, "Pushbullet", "pushbullet_device", "" ) PUSHBULLET_CHANNEL = check_setting_str( CFG, "Pushbullet", "pushbullet_channel", "" ) USE_EMAIL = bool(check_setting_int(CFG, "Email", "use_email", 0)) EMAIL_NOTIFY_ONSNATCH = bool( check_setting_int(CFG, "Email", "email_notify_onsnatch", 0) ) EMAIL_NOTIFY_ONDOWNLOAD = bool( check_setting_int(CFG, "Email", "email_notify_ondownload", 0) ) EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD = bool( check_setting_int(CFG, "Email", "email_notify_onsubtitledownload", 0) ) EMAIL_HOST = check_setting_str(CFG, "Email", "email_host", "") EMAIL_PORT = check_setting_int(CFG, "Email", "email_port", 25) EMAIL_TLS = bool(check_setting_int(CFG, "Email", "email_tls", 0)) EMAIL_USER = check_setting_str(CFG, "Email", "email_user", "", censor_log=True) EMAIL_PASSWORD = check_setting_str( CFG, "Email", "email_password", "", censor_log=True ) EMAIL_FROM = check_setting_str(CFG, "Email", "email_from", "") EMAIL_LIST = check_setting_str(CFG, "Email", "email_list", "") EMAIL_SUBJECT = check_setting_str(CFG, "Email", "email_subject", "") USE_SUBTITLES = bool(check_setting_int(CFG, "Subtitles", "use_subtitles", 0)) SUBTITLES_LANGUAGES = check_setting_str( CFG, "Subtitles", "subtitles_languages", "" ).split(",") if SUBTITLES_LANGUAGES[0] == "": SUBTITLES_LANGUAGES = [] SUBTITLES_DIR = check_setting_str(CFG, "Subtitles", "subtitles_dir", "") SUBTITLES_SERVICES_LIST = check_setting_str( CFG, "Subtitles", "SUBTITLES_SERVICES_LIST", "" ).split(",") SUBTITLES_SERVICES_ENABLED = [ int(x) for x in check_setting_str( CFG, "Subtitles", "SUBTITLES_SERVICES_ENABLED", "" ).split("|") if x ] SUBTITLES_DEFAULT = bool( check_setting_int(CFG, "Subtitles", "subtitles_default", 0) ) SUBTITLES_HISTORY = bool( check_setting_int(CFG, "Subtitles", "subtitles_history", 0) ) SUBTITLES_PERFECT_MATCH = bool( check_setting_int(CFG, "Subtitles", "subtitles_perfect_match", 1) ) EMBEDDED_SUBTITLES_ALL = bool( check_setting_int(CFG, "Subtitles", "embedded_subtitles_all", 0) ) SUBTITLES_HEARING_IMPAIRED = bool( check_setting_int(CFG, "Subtitles", "subtitles_hearing_impaired", 0) ) SUBTITLES_FINDER_FREQUENCY = check_setting_int( CFG, "Subtitles", "subtitles_finder_frequency", 1 ) SUBTITLES_MULTI = bool( check_setting_int(CFG, "Subtitles", "subtitles_multi", 1) ) SUBTITLES_KEEP_ONLY_WANTED = bool( check_setting_int(CFG, "Subtitles", "subtitles_keep_only_wanted", 0) ) SUBTITLES_EXTRA_SCRIPTS = [ x.strip() for x in check_setting_str( CFG, "Subtitles", "subtitles_extra_scripts", "" ).split("|") if x.strip() ] ADDIC7ED_USER = check_setting_str( CFG, "Subtitles", "addic7ed_username", "", censor_log=True ) ADDIC7ED_PASS = check_setting_str( CFG, "Subtitles", "addic7ed_password", "", censor_log=True ) ITASA_USER = check_setting_str( CFG, "Subtitles", "itasa_username", "", censor_log=True ) ITASA_PASS = check_setting_str( CFG, "Subtitles", "itasa_password", "", censor_log=True ) LEGENDASTV_USER = check_setting_str( CFG, "Subtitles", "legendastv_username", "", censor_log=True ) LEGENDASTV_PASS = check_setting_str( CFG, "Subtitles", "legendastv_password", "", censor_log=True ) OPENSUBTITLES_USER = check_setting_str( CFG, "Subtitles", "opensubtitles_username", "", censor_log=True ) OPENSUBTITLES_PASS = check_setting_str( CFG, "Subtitles", "opensubtitles_password", "", censor_log=True ) USE_FAILED_DOWNLOADS = bool( check_setting_int(CFG, "FailedDownloads", "use_failed_downloads", 0) ) DELETE_FAILED = bool( check_setting_int(CFG, "FailedDownloads", "delete_failed", 0) ) GIT_PATH = check_setting_str(CFG, "General", "git_path", "") IGNORE_WORDS = check_setting_str(CFG, "General", "ignore_words", IGNORE_WORDS) TRACKERS_LIST = check_setting_str( CFG, "General", "trackers_list", TRACKERS_LIST ) REQUIRE_WORDS = check_setting_str( CFG, "General", "require_words", REQUIRE_WORDS ) IGNORED_SUBS_LIST = check_setting_str( CFG, "General", "ignored_subs_list", IGNORED_SUBS_LIST ) CALENDAR_UNPROTECTED = bool( check_setting_int(CFG, "General", "calendar_unprotected", 0) ) CALENDAR_ICONS = bool(check_setting_int(CFG, "General", "calendar_icons", 0)) NO_RESTART = bool(check_setting_int(CFG, "General", "no_restart", 0)) EXTRA_SCRIPTS = [ x.strip() for x in check_setting_str(CFG, "General", "extra_scripts", "").split("|") if x.strip() ] USE_LISTVIEW = bool(check_setting_int(CFG, "General", "use_listview", 0)) ANIMESUPPORT = False USE_ANIDB = bool(check_setting_int(CFG, "ANIDB", "use_anidb", 0)) ANIDB_USERNAME = check_setting_str( CFG, "ANIDB", "anidb_username", "", censor_log=True ) ANIDB_PASSWORD = check_setting_str( CFG, "ANIDB", "anidb_password", "", censor_log=True ) ANIDB_USE_MYLIST = bool(check_setting_int(CFG, "ANIDB", "anidb_use_mylist", 0)) ANIME_SPLIT_HOME = bool(check_setting_int(CFG, "ANIME", "anime_split_home", 0)) METADATA_KODI = check_setting_str( CFG, "General", "metadata_kodi", "0|0|0|0|0|0|0|0|0|0" ) METADATA_KODI_12PLUS = check_setting_str( CFG, "General", "metadata_kodi_12plus", "0|0|0|0|0|0|0|0|0|0" ) METADATA_MEDIABROWSER = check_setting_str( CFG, "General", "metadata_mediabrowser", "0|0|0|0|0|0|0|0|0|0" ) METADATA_PS3 = check_setting_str( CFG, "General", "metadata_ps3", "0|0|0|0|0|0|0|0|0|0" ) METADATA_WDTV = check_setting_str( CFG, "General", "metadata_wdtv", "0|0|0|0|0|0|0|0|0|0" ) METADATA_TIVO = check_setting_str( CFG, "General", "metadata_tivo", "0|0|0|0|0|0|0|0|0|0" ) METADATA_MEDE8ER = check_setting_str( CFG, "General", "metadata_mede8er", "0|0|0|0|0|0|0|0|0|0" ) HOME_LAYOUT = check_setting_str(CFG, "GUI", "home_layout", "poster") HISTORY_LAYOUT = check_setting_str(CFG, "GUI", "history_layout", "detailed") HISTORY_LIMIT = check_setting_str(CFG, "GUI", "history_limit", "100") DISPLAY_SHOW_SPECIALS = bool( check_setting_int(CFG, "GUI", "display_show_specials", 1) ) COMING_EPS_LAYOUT = check_setting_str(CFG, "GUI", "coming_eps_layout", "banner") COMING_EPS_DISPLAY_PAUSED = bool( check_setting_int(CFG, "GUI", "coming_eps_display_paused", 0) ) COMING_EPS_SORT = check_setting_str(CFG, "GUI", "coming_eps_sort", "date") COMING_EPS_MISSED_RANGE = check_setting_int( CFG, "GUI", "coming_eps_missed_range", 7 ) FUZZY_DATING = bool(check_setting_int(CFG, "GUI", "fuzzy_dating", 0)) TRIM_ZERO = bool(check_setting_int(CFG, "GUI", "trim_zero", 0)) DATE_PRESET = check_setting_str(CFG, "GUI", "date_preset", "%x") TIME_PRESET_W_SECONDS = check_setting_str( CFG, "GUI", "time_preset", "%I:%M:%S %p" ) TIME_PRESET = TIME_PRESET_W_SECONDS.replace(":%S", "") TIMEZONE_DISPLAY = check_setting_str(CFG, "GUI", "timezone_display", "local") POSTER_SORTBY = check_setting_str(CFG, "GUI", "poster_sortby", "name") POSTER_SORTDIR = check_setting_int(CFG, "GUI", "poster_sortdir", 1) DISPLAY_ALL_SEASONS = bool( check_setting_int(CFG, "General", "display_all_seasons", 1) ) # initialize NZB and TORRENT providers providerList = providers.makeProviderList() NEWZNAB_DATA = check_setting_str(CFG, "Newznab", "newznab_data", "") newznabProviderList = NewznabProvider.get_providers_list(NEWZNAB_DATA) TORRENTRSS_DATA = check_setting_str(CFG, "TorrentRss", "torrentrss_data", "") torrentRssProviderList = TorrentRssProvider.get_providers_list(TORRENTRSS_DATA) # dynamically load provider settings for curTorrentProvider in [ curProvider for curProvider in providers.sortedProviderList() if curProvider.provider_type == GenericProvider.TORRENT ]: curTorrentProvider.enabled = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id(), 0, ) ) if hasattr(curTorrentProvider, "custom_url"): curTorrentProvider.custom_url = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_custom_url", "", censor_log=True, ) if hasattr(curTorrentProvider, "api_key"): curTorrentProvider.api_key = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_api_key", "", censor_log=True, ) if hasattr(curTorrentProvider, "hash"): curTorrentProvider.hash = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_hash", "", censor_log=True, ) if hasattr(curTorrentProvider, "digest"): curTorrentProvider.digest = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_digest", "", censor_log=True, ) if hasattr(curTorrentProvider, "username"): curTorrentProvider.username = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_username", "", censor_log=True, ) if hasattr(curTorrentProvider, "password"): curTorrentProvider.password = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_password", "", censor_log=True, ) if hasattr(curTorrentProvider, "passkey"): curTorrentProvider.passkey = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_passkey", "", censor_log=True, ) if hasattr(curTorrentProvider, "pin"): curTorrentProvider.pin = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_pin", "", censor_log=True, ) if hasattr(curTorrentProvider, "confirmed"): curTorrentProvider.confirmed = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_confirmed", 1, ) ) if hasattr(curTorrentProvider, "ranked"): curTorrentProvider.ranked = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_ranked", 1, ) ) if hasattr(curTorrentProvider, "engrelease"): curTorrentProvider.engrelease = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_engrelease", 0, ) ) if hasattr(curTorrentProvider, "onlyspasearch"): curTorrentProvider.onlyspasearch = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_onlyspasearch", 0, ) ) if hasattr(curTorrentProvider, "sorting"): curTorrentProvider.sorting = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_sorting", "seeders", ) if hasattr(curTorrentProvider, "options"): curTorrentProvider.options = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_options", "", ) if hasattr(curTorrentProvider, "ratio"): curTorrentProvider.ratio = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_ratio", "", ) if hasattr(curTorrentProvider, "minseed"): curTorrentProvider.minseed = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_minseed", 1, ) if hasattr(curTorrentProvider, "minleech"): curTorrentProvider.minleech = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_minleech", 0, ) if hasattr(curTorrentProvider, "freeleech"): curTorrentProvider.freeleech = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_freeleech", 0, ) ) if hasattr(curTorrentProvider, "search_mode"): curTorrentProvider.search_mode = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_search_mode", "eponly", ) if hasattr(curTorrentProvider, "search_fallback"): curTorrentProvider.search_fallback = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_search_fallback", 0, ) ) if hasattr(curTorrentProvider, "enable_daily"): curTorrentProvider.enable_daily = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_enable_daily", 1, ) ) if hasattr(curTorrentProvider, "enable_backlog"): curTorrentProvider.enable_backlog = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_enable_backlog", curTorrentProvider.supports_backlog, ) ) if hasattr(curTorrentProvider, "cat"): curTorrentProvider.cat = check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_cat", 0, ) if hasattr(curTorrentProvider, "subtitle"): curTorrentProvider.subtitle = bool( check_setting_int( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_subtitle", 0, ) ) if hasattr(curTorrentProvider, "cookies"): curTorrentProvider.cookies = check_setting_str( CFG, curTorrentProvider.get_id().upper(), curTorrentProvider.get_id() + "_cookies", "", censor_log=True, ) for curNzbProvider in [ curProvider for curProvider in providers.sortedProviderList() if curProvider.provider_type == GenericProvider.NZB ]: curNzbProvider.enabled = bool( check_setting_int( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id(), 0 ) ) if hasattr(curNzbProvider, "api_key"): curNzbProvider.api_key = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_api_key", "", censor_log=True, ) if hasattr(curNzbProvider, "username"): curNzbProvider.username = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_username", "", censor_log=True, ) if hasattr(curNzbProvider, "search_mode"): curNzbProvider.search_mode = check_setting_str( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_search_mode", "eponly", ) if hasattr(curNzbProvider, "search_fallback"): curNzbProvider.search_fallback = bool( check_setting_int( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_search_fallback", 0, ) ) if hasattr(curNzbProvider, "enable_daily"): curNzbProvider.enable_daily = bool( check_setting_int( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_enable_daily", 1, ) ) if hasattr(curNzbProvider, "enable_backlog"): curNzbProvider.enable_backlog = bool( check_setting_int( CFG, curNzbProvider.get_id().upper(), curNzbProvider.get_id() + "_enable_backlog", curNzbProvider.supports_backlog, ) ) if not ek(os.path.isfile, CONFIG_FILE): logger.log( "Unable to find '" + CONFIG_FILE + "', all settings will be default!", logger.DEBUG, ) save_config() # initialize the main SB database main_db_con = db.DBConnection() db.upgradeDatabase(main_db_con, mainDB.InitialSchema) # initialize the cache database cache_db_con = db.DBConnection("cache.db") db.upgradeDatabase(cache_db_con, cache_db.InitialSchema) # initialize the failed downloads database failed_db_con = db.DBConnection("failed.db") db.upgradeDatabase(failed_db_con, failed_db.InitialSchema) # fix up any db problems main_db_con = db.DBConnection() db.sanityCheckDatabase(main_db_con, mainDB.MainSanityCheck) # migrate the config if it needs it migrator = ConfigMigrator(CFG) migrator.migrate_config() # initialize metadata_providers metadata_provider_dict = metadata.get_metadata_generator_dict() for cur_metadata_tuple in [ (METADATA_KODI, metadata.kodi), (METADATA_KODI_12PLUS, metadata.kodi_12plus), (METADATA_MEDIABROWSER, metadata.mediabrowser), (METADATA_PS3, metadata.ps3), (METADATA_WDTV, metadata.wdtv), (METADATA_TIVO, metadata.tivo), (METADATA_MEDE8ER, metadata.mede8er), ]: (cur_metadata_config, cur_metadata_class) = cur_metadata_tuple tmp_provider = cur_metadata_class.metadata_class() tmp_provider.set_config(cur_metadata_config) metadata_provider_dict[tmp_provider.name] = tmp_provider # initialize schedulers # updaters versionCheckScheduler = scheduler.Scheduler( versionChecker.CheckVersion(), cycleTime=datetime.timedelta(hours=UPDATE_FREQUENCY), threadName="CHECKVERSION", silent=False, ) showQueueScheduler = scheduler.Scheduler( show_queue.ShowQueue(), cycleTime=datetime.timedelta(seconds=5), threadName="SHOWQUEUE", ) showUpdateScheduler = scheduler.Scheduler( showUpdater.ShowUpdater(), run_delay=datetime.timedelta(seconds=20), cycleTime=datetime.timedelta(hours=1), start_time=datetime.time(hour=SHOWUPDATE_HOUR), threadName="SHOWUPDATER", ) # searchers searchQueueScheduler = scheduler.Scheduler( search_queue.SearchQueue(), run_delay=datetime.timedelta(seconds=10), cycleTime=datetime.timedelta(seconds=5), threadName="SEARCHQUEUE", ) dailySearchScheduler = scheduler.Scheduler( dailysearcher.DailySearcher(), run_delay=datetime.timedelta(minutes=10), cycleTime=datetime.timedelta(minutes=DAILYSEARCH_FREQUENCY), threadName="DAILYSEARCHER", ) update_interval = datetime.timedelta(minutes=BACKLOG_FREQUENCY) backlogSearchScheduler = searchBacklog.BacklogSearchScheduler( searchBacklog.BacklogSearcher(), cycleTime=update_interval, threadName="BACKLOG", run_delay=update_interval, ) search_intervals = { "15m": 15, "45m": 45, "90m": 90, "4h": 4 * 60, "daily": 24 * 60, } if CHECK_PROPERS_INTERVAL in search_intervals: update_interval = datetime.timedelta( minutes=search_intervals[CHECK_PROPERS_INTERVAL] ) run_at = None else: update_interval = datetime.timedelta(hours=1) run_at = datetime.time(hour=1) # 1 AM properFinderScheduler = scheduler.Scheduler( properFinder.ProperFinder(), cycleTime=update_interval, threadName="FINDPROPERS", start_time=run_at, run_delay=update_interval, silent=not DOWNLOAD_PROPERS, ) # processors postProcessorTaskScheduler = scheduler.Scheduler( post_processing_queue.ProcessingQueue(), run_delay=datetime.timedelta(seconds=5), cycleTime=datetime.timedelta(seconds=5), threadName="POSTPROCESSOR", ) autoPostProcessorScheduler = scheduler.Scheduler( auto_postprocessor.PostProcessor(), run_delay=datetime.timedelta(minutes=5), cycleTime=datetime.timedelta(minutes=AUTOPOSTPROCESSOR_FREQUENCY), threadName="POSTPROCESSOR", silent=not PROCESS_AUTOMATICALLY, ) traktCheckerScheduler = scheduler.Scheduler( traktChecker.TraktChecker(), run_delay=datetime.timedelta(minutes=5), cycleTime=datetime.timedelta(hours=1), threadName="TRAKTCHECKER", silent=not USE_TRAKT, ) subtitlesFinderScheduler = scheduler.Scheduler( subtitles.SubtitlesFinder(), run_delay=datetime.timedelta(minutes=10), cycleTime=datetime.timedelta(hours=SUBTITLES_FINDER_FREQUENCY), threadName="FINDSUBTITLES", silent=not USE_SUBTITLES, ) __INITIALIZED__["0"] = True return True
https://github.com/SickChill/SickChill/issues/1269
2016-03-28 08:59:59 DEBUG POSTPROCESSER :: 'Traceback (most recent call last):\n File "/usr/share/sickrage/sickbeard/scheduler.py", line 106, in run\n self.action.run(self.force)\n File "/usr/share/sickrage/sickbeard/auto_postprocessor.py", line 56, in run\n processTV.processDir(sickbeard.TV_DOWNLOAD_DIR, force=force)\n File "/usr/share/sickrage/sickbeard/processTV.py", line 154, in func_wrapper\n ret = func(*args, **kargs)\n File "/usr/share/sickrage/sickbeard/processTV.py", line 295, in processDir\n process_media(processPath, videoFiles, nzbName, process_method, force, is_priority, result)\n File "/usr/share/sickrage/sickbeard/processTV.py", line 572, in process_media\n result.result = processor.process()\n File "/usr/share/sickrage/sickbeard/postProcessor.py", line 1040, in process\n if not verify_freespace(self.file_path, ep_obj.show._location, [ep_obj] + ep_obj.relatedEps): # pylint: disable=protected-access\n File "/usr/share/sickrage/sickbeard/helpers.py", line 1617, in verify_freespace\n diskfree += ek(os.path.getsize, f.location)\nTypeError: coercing to Unicode: need string or buffer, int found\n' AATypeError: coercing to Unicode: need string or buffer, int found AA diskfree += ek(os.path.getsize, f.location) AA File "/usr/share/sickrage/sickbeard/helpers.py", line 1617, in verify_freespace AA if not verify_freespace(self.file_path, ep_obj.show._location, [ep_obj] + ep_obj.relatedEps): # pylint: disable=protected-access AA File "/usr/share/sickrage/sickbeard/postProcessor.py", line 1040, in process AA result.result = processor.process() AA File "/usr/share/sickrage/sickbeard/processTV.py", line 572, in process_media AA process_media(processPath, videoFiles, nzbName, process_method, force, is_priority, result) AA File "/usr/share/sickrage/sickbeard/processTV.py", line 295, in processDir AA ret = func(*args, **kargs) AA File "/usr/share/sickrage/sickbeard/processTV.py", line 154, in func_wrapper AA processTV.processDir(sickbeard.TV_DOWNLOAD_DIR, force=force) AA File "/usr/share/sickrage/sickbeard/auto_postprocessor.py", line 56, in run AA self.action.run(self.force) AA File "/usr/share/sickrage/sickbeard/scheduler.py", line 106, in run AATraceback (most recent call last): 2016-03-28 08:59:59 ERROR POSTPROCESSER :: [a908b34] Exception generated in thread POSTPROCESSER: coercing to Unicode: need string or buffer, int found 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Trying to determine free space on destination drive 2016-03-28 08:59:59 INFO POSTPROCESSER :: This download is marked a priority download so I'm going to replace an existing file if I find one 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: File /children/Hey Arnold!/s01e06.mkv is larger than /completed/sickrage/Hey.Arnold.S01.DVDRip.x264-DEiMOS/proof-hey.arnold.s01e06.dvdrip.x264-deimos.vob 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Is ep a priority download: True 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: This was manually downloaded but it appears to be better quality than what we have so I'm marking it as priority 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Quality of the episode we're processing: SD DVD 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Hey.Arnold.S01.DVDRip.x264-DEiMOS looks like it has quality SD DVD, using that 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Looking up quality for name Hey.Arnold.S01.DVDRip.x264-DEiMOS, got SD DVD 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Checking if /children/Hey Arnold!/s01e06-thumb.jpg exists: True 2016-03-28 08:59:59 DEBUG POSTPROCESSER :: Checking if /children/Hey Arnold!/s01e06.nfo exists: True
AATypeError
def retryEpisode(self, show, season, episode, downCurQuality=0): # retrieve the episode object and fail if we can't get one ep_obj = self._getEpisode(show, season, episode) if isinstance(ep_obj, str): return json.dumps({"result": "failure"}) # make a queue item for it and put it on the queue ep_queue_item = search_queue.FailedQueueItem( ep_obj.show, [ep_obj], bool(int(downCurQuality)) ) sickbeard.searchQueueScheduler.action.add_item(ep_queue_item) if not ep_queue_item.started and ep_queue_item.success is None: return json.dumps( {"result": "success"} ) # I Actually want to call it queued, because the search hasnt been started yet! if ep_queue_item.started and ep_queue_item.success is None: return json.dumps({"result": "success"}) else: return json.dumps({"result": "failure"})
def retryEpisode(self, show, season, episode, downCurQuality): # retrieve the episode object and fail if we can't get one ep_obj = self._getEpisode(show, season, episode) if isinstance(ep_obj, str): return json.dumps({"result": "failure"}) # make a queue item for it and put it on the queue ep_queue_item = search_queue.FailedQueueItem( ep_obj.show, [ep_obj], bool(int(downCurQuality)) ) sickbeard.searchQueueScheduler.action.add_item(ep_queue_item) if not ep_queue_item.started and ep_queue_item.success is None: return json.dumps( {"result": "success"} ) # I Actually want to call it queued, because the search hasnt been started yet! if ep_queue_item.started and ep_queue_item.success is None: return json.dumps({"result": "success"}) else: return json.dumps({"result": "failure"})
https://github.com/SickChill/SickChill/issues/1208
Thread-18 :: [6116245] Failed doing webui callback: Traceback (most recent call last): File "C:\SickRage\sickbeard\webserve.py", line 285, in async_call result = function(**kwargs) TypeError: retryEpisode() takes exactly 5 arguments (4 given)
TypeError
def _container_generic_transform(arg, context, klass, iterables, build_elts): if isinstance(arg, klass): return arg elif isinstance(arg, iterables): if all(isinstance(elt, nodes.Const) for elt in arg.elts): elts = [elt.value for elt in arg.elts] else: # TODO: Does not handle deduplication for sets. elts = [] for element in arg.elts: if not element: continue inferred = helpers.safe_infer(element, context=context) if inferred: evaluated_object = nodes.EvaluatedObject( original=element, value=inferred ) elts.append(evaluated_object) elif isinstance(arg, nodes.Dict): # Dicts need to have consts as strings already. if not all(isinstance(elt[0], nodes.Const) for elt in arg.items): raise UseInferenceDefault() elts = [item[0].value for item in arg.items] elif isinstance(arg, nodes.Const) and isinstance( arg.value, (six.string_types, six.binary_type) ): elts = arg.value else: return return klass.from_elements(elts=build_elts(elts))
def _container_generic_transform(arg, context, klass, iterables, build_elts): if isinstance(arg, klass): return arg elif isinstance(arg, iterables): if all(isinstance(elt, nodes.Const) for elt in arg.elts): elts = [elt.value for elt in arg.elts] else: # TODO: Does not handle deduplication for sets. elts = [] for element in arg.elts: inferred = helpers.safe_infer(element, context=context) if inferred: evaluated_object = nodes.EvaluatedObject( original=element, value=inferred ) elts.append(evaluated_object) elif isinstance(arg, nodes.Dict): # Dicts need to have consts as strings already. if not all(isinstance(elt[0], nodes.Const) for elt in arg.items): raise UseInferenceDefault() elts = [item[0].value for item in arg.items] elif isinstance(arg, nodes.Const) and isinstance( arg.value, (six.string_types, six.binary_type) ): elts = arg.value else: return return klass.from_elements(elts=build_elts(elts))
https://github.com/PyCQA/astroid/issues/866
Traceback (most recent call last): File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/__init__.py", line 93, in _inference_tip_cached return iter(_cache[func, node]) KeyError: (<function register_builtin_transform.<locals>._transform_wrapper at 0x7f9bd8b34040>, <Call l.281 at 0x7f9bd3b28340>) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/scratch2/anaconda3/envs/entos/bin/pylint", line 11, in <module> sys.exit(run_pylint()) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/__init__.py", line 22, in run_pylint PylintRun(sys.argv[1:]) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/lint/run.py", line 349, in __init__ linter.check(args) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/lint/pylinter.py", line 862, in check self._check_files( File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/lint/pylinter.py", line 896, in _check_files self._check_file(get_ast, check_astroid_module, name, filepath, modname) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/lint/pylinter.py", line 922, in _check_file check_astroid_module(ast_node) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/lint/pylinter.py", line 1054, in check_astroid_module retval = self._check_astroid_module( File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/lint/pylinter.py", line 1099, in _check_astroid_module walker.walk(ast_node) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/utils/ast_walker.py", line 75, in walk self.walk(child) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/utils/ast_walker.py", line 75, in walk self.walk(child) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/utils/ast_walker.py", line 72, in walk callback(astroid) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/checkers/classes.py", line 1866, in visit_functiondef inferred = _safe_infer_call_result(node, node) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/pylint/checkers/classes.py", line 449, in _safe_infer_call_result next(inferit) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/scoped_nodes.py", line 1722, in infer_call_result yield from returnnode.value.infer(context) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/node_classes.py", line 357, in infer return self._explicit_inference(self, context, **kwargs) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/__init__.py", line 95, in _inference_tip_cached result = func(*args, **kwargs) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/brain/brain_builtin_inference.py", line 135, in _transform_wrapper result = transform(node, context=context) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/brain/brain_builtin_inference.py", line 219, in _infer_builtin_container return _container_generic_inference(node, context, klass, transform_func) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/brain/brain_builtin_inference.py", line 172, in _container_generic_inference transformed = transform(inferred) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/brain/brain_builtin_inference.py", line 188, in _container_generic_transform inferred = helpers.safe_infer(element, context=context) File "/scratch2/anaconda3/envs/entos/lib/python3.8/site-packages/astroid/helpers.py", line 153, in safe_infer value = next(inferit) TypeError: 'Uninferable' object is not an iterator
KeyError
def infer_attribute(self, context=None): """infer an Attribute node by using getattr on the associated object""" for owner in self.expr.infer(context): if owner is util.Uninferable: yield owner continue if context and context.boundnode: # This handles the situation where the attribute is accessed through a subclass # of a base class and the attribute is defined at the base class's level, # by taking in consideration a redefinition in the subclass. if isinstance(owner, bases.Instance) and isinstance( context.boundnode, bases.Instance ): try: if helpers.is_subtype( helpers.object_type(context.boundnode), helpers.object_type(owner), ): owner = context.boundnode except exceptions._NonDeducibleTypeHierarchy: # Can't determine anything useful. pass elif not context: context = contextmod.InferenceContext() try: context.boundnode = owner yield from owner.igetattr(self.attrname, context) except ( exceptions.AttributeInferenceError, exceptions.InferenceError, AttributeError, ): pass finally: context.boundnode = None return dict(node=self, context=context)
def infer_attribute(self, context=None): """infer an Attribute node by using getattr on the associated object""" for owner in self.expr.infer(context): if owner is util.Uninferable: yield owner continue if context and context.boundnode: # This handles the situation where the attribute is accessed through a subclass # of a base class and the attribute is defined at the base class's level, # by taking in consideration a redefinition in the subclass. if isinstance(owner, bases.Instance) and isinstance( context.boundnode, bases.Instance ): try: if helpers.is_subtype( helpers.object_type(context.boundnode), helpers.object_type(owner), ): owner = context.boundnode except exceptions._NonDeducibleTypeHierarchy: # Can't determine anything useful. pass try: context.boundnode = owner yield from owner.igetattr(self.attrname, context) except ( exceptions.AttributeInferenceError, exceptions.InferenceError, AttributeError, ): pass finally: context.boundnode = None return dict(node=self, context=context)
https://github.com/PyCQA/astroid/issues/745
Traceback (most recent call last): File "/usr/local/Cellar/python/3.6.3/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/astroid/inference.py", line 310, in infer_attribute context.boundnode = owner AttributeError: 'NoneType' object has no attribute 'boundnode'
AttributeError
def _filter_stmts(self, stmts, frame, offset): """Filter the given list of statements to remove ignorable statements. If self is not a frame itself and the name is found in the inner frame locals, statements will be filtered to remove ignorable statements according to self's location. :param stmts: The statements to filter. :type stmts: list(NodeNG) :param frame: The frame that all of the given statements belong to. :type frame: NodeNG :param offset: The line offset to filter statements up to. :type offset: int :returns: The filtered statements. :rtype: list(NodeNG) """ # if offset == -1, my actual frame is not the inner frame but its parent # # class A(B): pass # # we need this to resolve B correctly if offset == -1: myframe = self.frame().parent.frame() else: myframe = self.frame() # If the frame of this node is the same as the statement # of this node, then the node is part of a class or # a function definition and the frame of this node should be the # the upper frame, not the frame of the definition. # For more information why this is important, # see Pylint issue #295. # For example, for 'b', the statement is the same # as the frame / scope: # # def test(b=1): # ... if self.statement() is myframe and myframe.parent: myframe = myframe.parent.frame() mystmt = self.statement() # line filtering if we are in the same frame # # take care node may be missing lineno information (this is the case for # nodes inserted for living objects) if myframe is frame and mystmt.fromlineno is not None: assert mystmt.fromlineno is not None, mystmt mylineno = mystmt.fromlineno + offset else: # disabling lineno filtering mylineno = 0 _stmts = [] _stmt_parents = [] for node in stmts: stmt = node.statement() # line filtering is on and we have reached our location, break if stmt.fromlineno > mylineno > 0: break # Ignore decorators with the same name as the # decorated function # Fixes issue #375 if mystmt is stmt and is_from_decorator(self): continue assert hasattr(node, "assign_type"), (node, node.scope(), node.scope().locals) assign_type = node.assign_type() if node.has_base(self): break _stmts, done = assign_type._get_filtered_stmts(self, node, _stmts, mystmt) if done: break optional_assign = assign_type.optional_assign if optional_assign and assign_type.parent_of(self): # we are inside a loop, loop var assignment is hiding previous # assignment _stmts = [node] _stmt_parents = [stmt.parent] continue # XXX comment various branches below!!! try: pindex = _stmt_parents.index(stmt.parent) except ValueError: pass else: # we got a parent index, this means the currently visited node # is at the same block level as a previously visited node if _stmts[pindex].assign_type().parent_of(assign_type): # both statements are not at the same block level continue # if currently visited node is following previously considered # assignment and both are not exclusive, we can drop the # previous one. For instance in the following code :: # # if a: # x = 1 # else: # x = 2 # print x # # we can't remove neither x = 1 nor x = 2 when looking for 'x' # of 'print x'; while in the following :: # # x = 1 # x = 2 # print x # # we can remove x = 1 when we see x = 2 # # moreover, on loop assignment types, assignment won't # necessarily be done if the loop has no iteration, so we don't # want to clear previous assignments if any (hence the test on # optional_assign) if not (optional_assign or are_exclusive(_stmts[pindex], node)): del _stmt_parents[pindex] del _stmts[pindex] if isinstance(node, AssignName): if not optional_assign and stmt.parent is mystmt.parent: _stmts = [] _stmt_parents = [] elif isinstance(node, DelName): _stmts = [] _stmt_parents = [] continue if not are_exclusive(self, node): _stmts.append(node) _stmt_parents.append(stmt.parent) return _stmts
def _filter_stmts(self, stmts, frame, offset): """Filter the given list of statements to remove ignorable statements. If self is not a frame itself and the name is found in the inner frame locals, statements will be filtered to remove ignorable statements according to self's location. :param stmts: The statements to filter. :type stmts: list(NodeNG) :param frame: The frame that all of the given statements belong to. :type frame: NodeNG :param offset: The line offset to filter statements up to. :type offset: int :returns: The filtered statements. :rtype: list(NodeNG) """ # if offset == -1, my actual frame is not the inner frame but its parent # # class A(B): pass # # we need this to resolve B correctly if offset == -1: myframe = self.frame().parent.frame() else: myframe = self.frame() # If the frame of this node is the same as the statement # of this node, then the node is part of a class or # a function definition and the frame of this node should be the # the upper frame, not the frame of the definition. # For more information why this is important, # see Pylint issue #295. # For example, for 'b', the statement is the same # as the frame / scope: # # def test(b=1): # ... if self.statement() is myframe and myframe.parent: myframe = myframe.parent.frame() mystmt = self.statement() # line filtering if we are in the same frame # # take care node may be missing lineno information (this is the case for # nodes inserted for living objects) if myframe is frame and mystmt.fromlineno is not None: assert mystmt.fromlineno is not None, mystmt mylineno = mystmt.fromlineno + offset else: # disabling lineno filtering mylineno = 0 _stmts = [] _stmt_parents = [] for node in stmts: stmt = node.statement() # line filtering is on and we have reached our location, break if stmt.fromlineno > mylineno > 0: break assert hasattr(node, "assign_type"), (node, node.scope(), node.scope().locals) assign_type = node.assign_type() if node.has_base(self): break _stmts, done = assign_type._get_filtered_stmts(self, node, _stmts, mystmt) if done: break optional_assign = assign_type.optional_assign if optional_assign and assign_type.parent_of(self): # we are inside a loop, loop var assignment is hiding previous # assignment _stmts = [node] _stmt_parents = [stmt.parent] continue # XXX comment various branches below!!! try: pindex = _stmt_parents.index(stmt.parent) except ValueError: pass else: # we got a parent index, this means the currently visited node # is at the same block level as a previously visited node if _stmts[pindex].assign_type().parent_of(assign_type): # both statements are not at the same block level continue # if currently visited node is following previously considered # assignment and both are not exclusive, we can drop the # previous one. For instance in the following code :: # # if a: # x = 1 # else: # x = 2 # print x # # we can't remove neither x = 1 nor x = 2 when looking for 'x' # of 'print x'; while in the following :: # # x = 1 # x = 2 # print x # # we can remove x = 1 when we see x = 2 # # moreover, on loop assignment types, assignment won't # necessarily be done if the loop has no iteration, so we don't # want to clear previous assignments if any (hence the test on # optional_assign) if not (optional_assign or are_exclusive(_stmts[pindex], node)): del _stmt_parents[pindex] del _stmts[pindex] if isinstance(node, AssignName): if not optional_assign and stmt.parent is mystmt.parent: _stmts = [] _stmt_parents = [] elif isinstance(node, DelName): _stmts = [] _stmt_parents = [] continue if not are_exclusive(self, node): _stmts.append(node) _stmt_parents.append(stmt.parent) return _stmts
https://github.com/PyCQA/astroid/issues/375
Traceback (most recent call last): File "/Users/rwilliams/src/oss/pylint/venv/bin/pylint", line 9, in <module> load_entry_point('pylint==2.0.0', 'console_scripts', 'pylint')() File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/pylint-2.0.0-py2.7.egg/pylint/__init__.py", line 13, in run_pylint Run(sys.argv[1:]) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/pylint-2.0.0-py2.7.egg/pylint/lint.py", line 1300, in __init__ linter.check(args) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/pylint-2.0.0-py2.7.egg/pylint/lint.py", line 726, in check self._do_check(files_or_modules) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/pylint-2.0.0-py2.7.egg/pylint/lint.py", line 855, in _do_check self.check_astroid_module(ast_node, walker, rawcheckers, tokencheckers) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/pylint-2.0.0-py2.7.egg/pylint/lint.py", line 934, in check_astroid_module walker.walk(ast_node) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/pylint-2.0.0-py2.7.egg/pylint/utils.py", line 997, in walk self.walk(child) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/pylint-2.0.0-py2.7.egg/pylint/utils.py", line 994, in walk cb(astroid) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/pylint-2.0.0-py2.7.egg/pylint/checkers/base.py", line 388, in visit_functiondef self._check_redefinition(node.is_method() and 'method' or 'function', node) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 876, in is_method return self.type != 'function' and isinstance(self.parent.frame(), ClassDef) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/decorators.py", line 65, in __get__ val = self.wrapped(inst) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 807, in type _type = _infer_decorator_callchain(current) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 611, in _infer_decorator_callchain result = next(node.infer_call_result(node.parent)) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 963, in infer_call_result for inferred in returnnode.value.infer(context): File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/decorators.py", line 85, in wrapped res = next(generator) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/bases.py", line 95, in _infer_stmts for inferred in stmt.infer(context=context): File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/context.py", line 40, in cache_generator for result in generator: File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/decorators.py", line 82, in wrapped generator = _func(node, context, **kwargs) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/inference.py", line 723, in infer_assign stmts = list(self.assigned_stmts(context=context)) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/protocols.py", line 292, in _arguments_infer_argname functype = self.parent.type File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/decorators.py", line 65, in __get__ val = self.wrapped(inst) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 807, in type _type = _infer_decorator_callchain(current) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 611, in _infer_decorator_callchain result = next(node.infer_call_result(node.parent)) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 963, in infer_call_result for inferred in returnnode.value.infer(context): File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/decorators.py", line 85, in wrapped res = next(generator) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/bases.py", line 95, in _infer_stmts for inferred in stmt.infer(context=context): File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/context.py", line 40, in cache_generator for result in generator: File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/decorators.py", line 82, in wrapped generator = _func(node, context, **kwargs) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/inference.py", line 723, in infer_assign stmts = list(self.assigned_stmts(context=context)) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/protocols.py", line 292, in _arguments_infer_argname functype = self.parent.type File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/decorators.py", line 65, in __get__ val = self.wrapped(inst) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 807, in type _type = _infer_decorator_callchain(current) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 611, in _infer_decorator_callchain result = next(node.infer_call_result(node.parent)) File "/Users/rwilliams/src/oss/pylint/venv/lib/python2.7/site-packages/astroid-1.5.0-py2.7.egg/astroid/scoped_nodes.py", line 963, in infer_call_result . . . RuntimeError: maximum recursion depth exceeded
RuntimeError
def py__annotations__(self): obj = node_classes.Dict(parent=self._instance) if not self._instance.returns: returns = None else: returns = self._instance.returns args = self._instance.args pair_annotations = itertools.chain( six.moves.zip(args.args or [], args.annotations), six.moves.zip(args.kwonlyargs, args.kwonlyargs_annotations), ) annotations = { arg.name: annotation for (arg, annotation) in pair_annotations if annotation } if args.varargannotation: annotations[args.vararg] = args.varargannotation if args.kwargannotation: annotations[args.kwarg] = args.kwargannotation if returns: annotations["return"] = returns items = [ (node_classes.Const(key, parent=obj), value) for (key, value) in annotations.items() ] obj.postinit(items) return obj
def py__annotations__(self): obj = node_classes.Dict(parent=self._instance) if not self._instance.returns: returns = None else: returns = self._instance.returns args = self._instance.args pair_annotations = itertools.chain( six.moves.zip(args.args, args.annotations), six.moves.zip(args.kwonlyargs, args.kwonlyargs_annotations), ) annotations = { arg.name: annotation for (arg, annotation) in pair_annotations if annotation } if args.varargannotation: annotations[args.vararg] = args.varargannotation if args.kwargannotation: annotations[args.kwarg] = args.kwargannotation if returns: annotations["return"] = returns items = [ (node_classes.Const(key, parent=obj), value) for (key, value) in annotations.items() ] obj.postinit(items) return obj
https://github.com/PyCQA/astroid/issues/473
Traceback (most recent call last): File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/bin/pylint", line 11, in <module> sys.exit(run_pylint()) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/__init__.py", line 16, in run_pylint Run(sys.argv[1:]) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/lint.py", line 1347, in __init__ linter.check(args) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/lint.py", line 768, in check self._do_check(files_or_modules) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/lint.py", line 901, in _do_check self.check_astroid_module(ast_node, walker, rawcheckers, tokencheckers) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/lint.py", line 980, in check_astroid_module walker.walk(ast_node) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/utils.py", line 1014, in walk self.walk(child) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/utils.py", line 1014, in walk self.walk(child) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/utils.py", line 1014, in walk self.walk(child) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/utils.py", line 1011, in walk cb(astroid) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/pylint/checkers/typecheck.py", line 714, in visit_attribute if not [n for n in owner.getattr(node.attrname) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/astroid/bases.py", line 298, in getattr return self._proxied.getattr(name, context) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/astroid/scoped_nodes.py", line 1438, in getattr return [self.special_attributes.lookup(name)] File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/astroid/interpreter/objectmodel.py", line 110, in lookup return getattr(self, "py" + name) File "/home/dmytro/.virtualenvs/tmp-e8ba418cce8a54b3/lib/python3.6/site-packages/astroid/interpreter/objectmodel.py", line 237, in py__annotations__ six.moves.zip(args.args, args.annotations), TypeError: zip argument #1 must support iteration
TypeError
def _multiply_seq_by_int(self, opnode, other, context): node = self.__class__(parent=opnode) elts = [] filtered_elts = (elt for elt in self.elts if elt is not util.Uninferable) for elt in filtered_elts: infered = helpers.safe_infer(elt, context) if infered is None: infered = util.Uninferable elts.append(infered) node.elts = elts * other.value return node
def _multiply_seq_by_int(self, opnode, other, context): node = self.__class__(parent=opnode) elts = [] for elt in self.elts: infered = helpers.safe_infer(elt, context) if infered is None: infered = util.Uninferable elts.append(infered) node.elts = elts * other.value return node
https://github.com/PyCQA/astroid/issues/467
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-13-243db1d8132c> in <module>() 23 """) 24 ---> 25 parsed.accept(Visitor()) ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/node_classes.py in accept(self, visitor) 293 def accept(self, visitor): 294 func = getattr(visitor, "visit_" + self.__class__.__name__.lower()) --> 295 return func(self) 296 297 def get_children(self): <ipython-input-13-243db1d8132c> in visit(self, node) 5 def visit(self, node): 6 for child in node.get_children(): ----> 7 child.accept(self) 8 visit_module = visit 9 visit_assign = visit ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/node_classes.py in accept(self, visitor) 293 def accept(self, visitor): 294 func = getattr(visitor, "visit_" + self.__class__.__name__.lower()) --> 295 return func(self) 296 297 def get_children(self): <ipython-input-13-243db1d8132c> in visit(self, node) 5 def visit(self, node): 6 for child in node.get_children(): ----> 7 child.accept(self) 8 visit_module = visit 9 visit_assign = visit ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/node_classes.py in accept(self, visitor) 293 def accept(self, visitor): 294 func = getattr(visitor, "visit_" + self.__class__.__name__.lower()) --> 295 return func(self) 296 297 def get_children(self): <ipython-input-13-243db1d8132c> in visit_assignname(self, node) 14 15 def visit_assignname(self, node): ---> 16 for var in node.infer(): 17 pass 18 ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/decorators.py in wrapped(node, context, _func, **kwargs) 83 try: 84 while True: ---> 85 res = next(generator) 86 # unproxy only true instance, not const, tuple, dict... 87 if res.__class__.__name__ == 'Instance': ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/bases.py in _infer_stmts(stmts, context, frame) 93 context.lookupname = stmt._infer_name(frame, name) 94 try: ---> 95 for inferred in stmt.infer(context=context): 96 yield inferred 97 inferred = True ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/context.py in cache_generator(self, key, generator) 38 def cache_generator(self, key, generator): 39 results = [] ---> 40 for result in generator: 41 results.append(result) 42 yield result ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/decorators.py in yes_if_nothing_inferred(func, instance, args, kwargs) 106 def yes_if_nothing_inferred(func, instance, args, kwargs): 107 inferred = False --> 108 for node in func(*args, **kwargs): 109 inferred = True 110 yield node ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/decorators.py in wrapped(node, context, _func, **kwargs) 83 try: 84 while True: ---> 85 res = next(generator) 86 # unproxy only true instance, not const, tuple, dict... 87 if res.__class__.__name__ == 'Instance': ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/inference.py in _filter_operation_errors(self, infer_callable, context, error) 407 408 def _filter_operation_errors(self, infer_callable, context, error): --> 409 for result in infer_callable(self, context): 410 if isinstance(result, error): 411 # For the sake of .infer(), we don't care about operation ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/inference.py in _infer_binop(self, context) 686 try: 687 for result in _infer_binary_operation(lhs, rhs, self, --> 688 context, _get_binop_flow): 689 yield result 690 except exceptions._NonDeducibleTypeHierarchy: ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/inference.py in _infer_binary_operation(left, right, binary_opnode, context, flow_factory) 626 for method in methods: 627 try: --> 628 results = list(method()) 629 except AttributeError: 630 continue ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/decorators.py in yes_if_nothing_inferred(func, instance, args, kwargs) 106 def yes_if_nothing_inferred(func, instance, args, kwargs): 107 inferred = False --> 108 for node in func(*args, **kwargs): 109 inferred = True 110 yield node ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/protocols.py in tl_infer_binary_op(self, opnode, operator, other, context, method) 170 yield not_implemented 171 return --> 172 yield _multiply_seq_by_int(self, opnode, other, context) 173 elif isinstance(other, bases.Instance) and operator == '*': 174 # Verify if the instance supports __index__. ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/protocols.py in _multiply_seq_by_int(self, opnode, other, context) 137 elts = [] 138 for elt in self.elts: --> 139 infered = helpers.safe_infer(elt, context) 140 if infered is None: 141 infered = util.Uninferable ~/anaconda3/envs/py36/lib/python3.6/site-packages/astroid/helpers.py in safe_infer(node, context) 98 try: 99 inferit = node.infer(context=context) --> 100 value = next(inferit) 101 except exceptions.InferenceError: 102 return TypeError: 'Uninferable' object is not an iterator
TypeError
def attr_attributes_transform(node): """Given that the ClassNode has an attr decorator, rewrite class attributes as instance attributes """ for cdefbodynode in node.body: if not isinstance(cdefbodynode, astroid.Assign): continue for target in cdefbodynode.targets: rhs_node = astroid.Unknown( lineno=cdefbodynode.lineno, col_offset=cdefbodynode.col_offset, parent=cdefbodynode, ) node.locals[target.name] = [rhs_node]
def attr_attributes_transform(node): """Given that the ClassNode has an attr decorator, rewrite class attributes as instance attributes """ for cdefbodynode in node.body: if not isinstance(cdefbodynode, astroid.Assign): continue for target in cdefbodynode.targets: node.locals[target.name] = [astroid.Attribute(target.name)]
https://github.com/PyCQA/astroid/issues/469
... ************* Module qutebrowser.mainwindow.prompt R:146, 4: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements) Traceback (most recent call last): File "/usr/lib64/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/usr/lib64/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/__main__.py", line 7, in <module> pylint.run_pylint() File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/__init__.py", line 13, in run_pylint Run(sys.argv[1:]) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/lint.py", line 1326, in __init__ linter.check(args) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/lint.py", line 747, in check self._do_check(files_or_modules) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/lint.py", line 880, in _do_check self.check_astroid_module(ast_node, walker, rawcheckers, tokencheckers) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/lint.py", line 959, in check_astroid_module walker.walk(ast_node) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/utils.py", line 994, in walk self.walk(child) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/utils.py", line 994, in walk self.walk(child) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/utils.py", line 994, in walk self.walk(child) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/utils.py", line 991, in walk cb(astroid) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/pylint/pylint/checkers/typecheck.py", line 676, in visit_attribute inferred = list(node.expr.infer()) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/astroid/astroid/decorators.py", line 82, in wrapped generator = _func(node, context, **kwargs) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/astroid/astroid/inference.py", line 138, in infer_name frame, stmts = self.lookup(self.name) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/astroid/astroid/node_classes.py", line 989, in lookup return self.scope().scope_lookup(self, name) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/astroid/astroid/scoped_nodes.py", line 2012, in scope_lookup return frame._scope_lookup(node, name, offset) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/astroid/astroid/scoped_nodes.py", line 160, in _scope_lookup stmts = node._filter_stmts(self.locals[name], self, offset) File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/astroid/astroid/node_classes.py", line 1061, in _filter_stmts stmt = node.statement() File "/home/florian/proj/qutebrowser/git/.tox/pylint-master/src/astroid/astroid/node_classes.py", line 417, in statement return self.parent.statement() AttributeError: 'NoneType' object has no attribute 'statement'
AttributeError
def infer_enum_class(node): """Specific inference for enums.""" names = set(("Enum", "IntEnum", "enum.Enum", "enum.IntEnum")) for basename in node.basenames: # TODO: doesn't handle subclasses yet. This implementation # is a hack to support enums. if basename not in names: continue if node.root().name == "enum": # Skip if the class is directly from enum module. break for local, values in node.locals.items(): if any(not isinstance(value, nodes.AssignName) for value in values): continue stmt = values[0].statement() if isinstance(stmt, nodes.Assign): if isinstance(stmt.targets[0], nodes.Tuple): targets = stmt.targets[0].itered() else: targets = stmt.targets elif isinstance(stmt, nodes.AnnAssign): targets = [stmt.target] new_targets = [] for target in targets: # Replace all the assignments with our mocked class. classdef = dedent( """ class %(name)s(%(types)s): @property def value(self): # Not the best return. return None @property def name(self): return %(name)r """ % {"name": target.name, "types": ", ".join(node.basenames)} ) fake = AstroidBuilder(MANAGER).string_build(classdef)[target.name] fake.parent = target.parent for method in node.mymethods(): fake.locals[method.name] = [method] new_targets.append(fake.instantiate_class()) node.locals[local] = new_targets break return node
def infer_enum_class(node): """Specific inference for enums.""" names = set(("Enum", "IntEnum", "enum.Enum", "enum.IntEnum")) for basename in node.basenames: # TODO: doesn't handle subclasses yet. This implementation # is a hack to support enums. if basename not in names: continue if node.root().name == "enum": # Skip if the class is directly from enum module. break for local, values in node.locals.items(): if any(not isinstance(value, nodes.AssignName) for value in values): continue stmt = values[0].statement() if isinstance(stmt.targets[0], nodes.Tuple): targets = stmt.targets[0].itered() else: targets = stmt.targets new_targets = [] for target in targets: # Replace all the assignments with our mocked class. classdef = dedent( """ class %(name)s(%(types)s): @property def value(self): # Not the best return. return None @property def name(self): return %(name)r """ % {"name": target.name, "types": ", ".join(node.basenames)} ) fake = AstroidBuilder(MANAGER).string_build(classdef)[target.name] fake.parent = target.parent for method in node.mymethods(): fake.locals[method.name] = [method] new_targets.append(fake.instantiate_class()) node.locals[local] = new_targets break return node
https://github.com/PyCQA/astroid/issues/442
Traceback (most recent call last): File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/pylint/lint.py", line 896, in get_ast return MANAGER.ast_from_file(filepath, modname, source=True) File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/manager.py", line 80, in ast_from_file return AstroidBuilder(self).file_build(filepath, modname) File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/builder.py", line 152, in file_build return self._post_build(module, encoding) File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/builder.py", line 176, in _post_build module = self._manager.visit_transforms(module) File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/manager.py", line 62, in visit_transforms return self._transform.visit(node) File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/transforms.py", line 83, in visit module.body = [self._visit(child) for child in module.body] File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/transforms.py", line 83, in <listcomp> module.body = [self._visit(child) for child in module.body] File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/transforms.py", line 53, in _visit return self._transform(node) File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/transforms.py", line 36, in _transform ret = transform_func(node) File "/Users/jeff/.virtualenvs/v6/lib/python3.6/site-packages/astroid/brain/brain_namedtuple_enum.py", line 201, in infer_enum_class if isinstance(stmt.targets[0], nodes.Tuple): AttributeError: 'AnnAssign' object has no attribute 'targets' ************* Module tmp F: 1, 0: <class 'AttributeError'>: 'AnnAssign' object has no attribute 'targets' (astroid-error)
AttributeError
def locals_import_from(node, locals_): # Don't add future imports to locals. if node.modname == "__future__": return # Sort the list for having the locals ordered by their first # appearance. def sort_locals(my_list): my_list.sort(key=lambda node: node.fromlineno or 0) for name, asname in node.names: if name == "*": try: imported = util.do_import_module(node, node.modname) except exceptions.AstroidBuildingError: continue for name in imported.wildcard_import_names(): locals_[name].append(node) sort_locals(locals_[name]) else: locals_[asname or name].append(node) sort_locals(locals_[asname or name])
def locals_import_from(node, locals_): # Don't add future imports to locals. if node.modname == "__future__": return # Sort the list for having the locals ordered by their first # appearance. def sort_locals(my_list): my_list.sort(key=lambda node: node.fromlineno) for name, asname in node.names: if name == "*": try: imported = util.do_import_module(node, node.modname) except exceptions.AstroidBuildingError: continue for name in imported.wildcard_import_names(): locals_[name].append(node) sort_locals(locals_[name]) else: locals_[asname or name].append(node) sort_locals(locals_[asname or name])
https://github.com/PyCQA/astroid/issues/195
FAIL: test_builtin_fromlineno_missing (unittest_nodes.ArgumentsNodeTC) ---------------------------------------------------------------------- Traceback (most recent call last): File "~/code/astroid/.tox/py34/lib/python3.4/site-packages/astroid/tests/unittest_nodes.py", line 479, in test_builtin_fromlineno_missing self.assertEqual(new.args.fromlineno, 0) AssertionError: 1 != 0
AssertionError
def sort_locals(my_list): my_list.sort(key=lambda node: node.fromlineno or 0)
def sort_locals(my_list): my_list.sort(key=lambda node: node.fromlineno)
https://github.com/PyCQA/astroid/issues/195
FAIL: test_builtin_fromlineno_missing (unittest_nodes.ArgumentsNodeTC) ---------------------------------------------------------------------- Traceback (most recent call last): File "~/code/astroid/.tox/py34/lib/python3.4/site-packages/astroid/tests/unittest_nodes.py", line 479, in test_builtin_fromlineno_missing self.assertEqual(new.args.fromlineno, 0) AssertionError: 1 != 0
AssertionError
def fromlineno(self): return self.lineno
def fromlineno(self): if self.lineno is None: return self._fixed_source_line() else: return self.lineno
https://github.com/PyCQA/astroid/issues/195
FAIL: test_builtin_fromlineno_missing (unittest_nodes.ArgumentsNodeTC) ---------------------------------------------------------------------- Traceback (most recent call last): File "~/code/astroid/.tox/py34/lib/python3.4/site-packages/astroid/tests/unittest_nodes.py", line 479, in test_builtin_fromlineno_missing self.assertEqual(new.args.fromlineno, 0) AssertionError: 1 != 0
AssertionError
def tolineno(self): if not self._astroid_fields: # can't have children lastchild = None else: lastchild = self.last_child() if lastchild is None: return self.fromlineno else: return lastchild.tolineno
def tolineno(self): if not self._astroid_fields: # can't have children lastchild = None else: lastchild = self.last_child() if lastchild is None: return self.fromlineno else: return lastchild.tolineno # TODO / FIXME: assert self.fromlineno is not None, self assert self.tolineno is not None, self
https://github.com/PyCQA/astroid/issues/195
FAIL: test_builtin_fromlineno_missing (unittest_nodes.ArgumentsNodeTC) ---------------------------------------------------------------------- Traceback (most recent call last): File "~/code/astroid/.tox/py34/lib/python3.4/site-packages/astroid/tests/unittest_nodes.py", line 479, in test_builtin_fromlineno_missing self.assertEqual(new.args.fromlineno, 0) AssertionError: 1 != 0
AssertionError
def _filter_stmts(self, stmts, frame, offset): """filter statements to remove ignorable statements. If self is not a frame itself and the name is found in the inner frame locals, statements will be filtered to remove ignorable statements according to self's location """ # if offset == -1, my actual frame is not the inner frame but its parent # # class A(B): pass # # we need this to resolve B correctly if offset == -1: myframe = self.frame().parent.frame() else: myframe = self.frame() # If the frame of this node is the same as the statement # of this node, then the node is part of a class or # a function definition and the frame of this node should be the # the upper frame, not the frame of the definition. # For more information why this is important, # see Pylint issue #295. # For example, for 'b', the statement is the same # as the frame / scope: # # def test(b=1): # ... if self.statement() is myframe and myframe.parent: myframe = myframe.parent.frame() mystmt = self.statement() # line filtering if we are in the same frame # # take care node may be missing lineno information (this is the case for # nodes inserted for living objects) if myframe is frame and mystmt.fromlineno is not None: mylineno = mystmt.fromlineno + offset else: # disabling lineno filtering mylineno = 0 _stmts = [] _stmt_parents = [] for node in stmts: stmt = node.statement() # line filtering is on and we have reached our location, break if mylineno > 0 and stmt.fromlineno and stmt.fromlineno > mylineno: break assert hasattr(node, "assign_type"), (node, node.scope(), node.scope().locals) assign_type = node.assign_type() if node.has_base(self): break _stmts, done = assign_type._get_filtered_stmts(self, node, _stmts, mystmt) if done: break optional_assign = assign_type.optional_assign if optional_assign and assign_type.parent_of(self): # we are inside a loop, loop var assigment is hidding previous # assigment _stmts = [node] _stmt_parents = [stmt.parent] continue # XXX comment various branches below!!! try: pindex = _stmt_parents.index(stmt.parent) except ValueError: pass else: # we got a parent index, this means the currently visited node # is at the same block level as a previously visited node if _stmts[pindex].assign_type().parent_of(assign_type): # both statements are not at the same block level continue # if currently visited node is following previously considered # assignement and both are not exclusive, we can drop the # previous one. For instance in the following code :: # # if a: # x = 1 # else: # x = 2 # print x # # we can't remove neither x = 1 nor x = 2 when looking for 'x' # of 'print x'; while in the following :: # # x = 1 # x = 2 # print x # # we can remove x = 1 when we see x = 2 # # moreover, on loop assignment types, assignment won't # necessarily be done if the loop has no iteration, so we don't # want to clear previous assigments if any (hence the test on # optional_assign) if not ( optional_assign or interpreterutil.are_exclusive(_stmts[pindex], node) ): del _stmt_parents[pindex] del _stmts[pindex] if isinstance(node, treeabc.AssignName): if not optional_assign and stmt.parent is mystmt.parent: _stmts = [] _stmt_parents = [] elif isinstance(node, treeabc.DelName): _stmts = [] _stmt_parents = [] continue if not interpreterutil.are_exclusive(self, node): _stmts.append(node) _stmt_parents.append(stmt.parent) return _stmts
def _filter_stmts(self, stmts, frame, offset): """filter statements to remove ignorable statements. If self is not a frame itself and the name is found in the inner frame locals, statements will be filtered to remove ignorable statements according to self's location """ # if offset == -1, my actual frame is not the inner frame but its parent # # class A(B): pass # # we need this to resolve B correctly if offset == -1: myframe = self.frame().parent.frame() else: myframe = self.frame() # If the frame of this node is the same as the statement # of this node, then the node is part of a class or # a function definition and the frame of this node should be the # the upper frame, not the frame of the definition. # For more information why this is important, # see Pylint issue #295. # For example, for 'b', the statement is the same # as the frame / scope: # # def test(b=1): # ... if self.statement() is myframe and myframe.parent: myframe = myframe.parent.frame() mystmt = self.statement() # line filtering if we are in the same frame # # take care node may be missing lineno information (this is the case for # nodes inserted for living objects) if myframe is frame and mystmt.fromlineno is not None: assert mystmt.fromlineno is not None, mystmt mylineno = mystmt.fromlineno + offset else: # disabling lineno filtering mylineno = 0 _stmts = [] _stmt_parents = [] for node in stmts: stmt = node.statement() # line filtering is on and we have reached our location, break if mylineno > 0 and stmt.fromlineno > mylineno: break assert hasattr(node, "assign_type"), (node, node.scope(), node.scope().locals) assign_type = node.assign_type() if node.has_base(self): break _stmts, done = assign_type._get_filtered_stmts(self, node, _stmts, mystmt) if done: break optional_assign = assign_type.optional_assign if optional_assign and assign_type.parent_of(self): # we are inside a loop, loop var assigment is hidding previous # assigment _stmts = [node] _stmt_parents = [stmt.parent] continue # XXX comment various branches below!!! try: pindex = _stmt_parents.index(stmt.parent) except ValueError: pass else: # we got a parent index, this means the currently visited node # is at the same block level as a previously visited node if _stmts[pindex].assign_type().parent_of(assign_type): # both statements are not at the same block level continue # if currently visited node is following previously considered # assignement and both are not exclusive, we can drop the # previous one. For instance in the following code :: # # if a: # x = 1 # else: # x = 2 # print x # # we can't remove neither x = 1 nor x = 2 when looking for 'x' # of 'print x'; while in the following :: # # x = 1 # x = 2 # print x # # we can remove x = 1 when we see x = 2 # # moreover, on loop assignment types, assignment won't # necessarily be done if the loop has no iteration, so we don't # want to clear previous assigments if any (hence the test on # optional_assign) if not ( optional_assign or interpreterutil.are_exclusive(_stmts[pindex], node) ): del _stmt_parents[pindex] del _stmts[pindex] if isinstance(node, treeabc.AssignName): if not optional_assign and stmt.parent is mystmt.parent: _stmts = [] _stmt_parents = [] elif isinstance(node, treeabc.DelName): _stmts = [] _stmt_parents = [] continue if not interpreterutil.are_exclusive(self, node): _stmts.append(node) _stmt_parents.append(stmt.parent) return _stmts
https://github.com/PyCQA/astroid/issues/195
FAIL: test_builtin_fromlineno_missing (unittest_nodes.ArgumentsNodeTC) ---------------------------------------------------------------------- Traceback (most recent call last): File "~/code/astroid/.tox/py34/lib/python3.4/site-packages/astroid/tests/unittest_nodes.py", line 479, in test_builtin_fromlineno_missing self.assertEqual(new.args.fromlineno, 0) AssertionError: 1 != 0
AssertionError
def fromlineno(self): # Let the Function's lineno be the lineno for this. if self.parent.fromlineno: return self.parent.fromlineno return super(Arguments, self).fromlineno
def fromlineno(self): lineno = super(Arguments, self).fromlineno return max(lineno, self.parent.fromlineno or 0)
https://github.com/PyCQA/astroid/issues/195
FAIL: test_builtin_fromlineno_missing (unittest_nodes.ArgumentsNodeTC) ---------------------------------------------------------------------- Traceback (most recent call last): File "~/code/astroid/.tox/py34/lib/python3.4/site-packages/astroid/tests/unittest_nodes.py", line 479, in test_builtin_fromlineno_missing self.assertEqual(new.args.fromlineno, 0) AssertionError: 1 != 0
AssertionError
def const_factory(value): """return an astroid node for a python value""" # XXX we should probably be stricter here and only consider stuff in # CONST_CLS or do better treatment: in case where value is not in CONST_CLS, # we should rather recall the builder on this value than returning an empty # node (another option being that const_factory shouldn't be called with something # not in CONST_CLS) assert not isinstance(value, bases.NodeNG) try: return CONST_CLS[value.__class__](value) except (KeyError, AttributeError) as exc: node = EmptyNode() node.object = value return node
def const_factory(value): """return an astroid node for a python value""" # XXX we should probably be stricter here and only consider stuff in # CONST_CLS or do better treatment: in case where value is not in CONST_CLS, # we should rather recall the builder on this value than returning an empty # node (another option being that const_factory shouldn't be called with something # not in CONST_CLS) assert not isinstance(value, bases.NodeNG) try: return CONST_CLS[value.__class__](value) except (KeyError, AttributeError): node = EmptyNode() node.object = value return node
https://github.com/PyCQA/astroid/issues/277
#!python Traceback (most recent call last): File "a.py", line 5, in <module> f.wildcard_import_names() File "astroid\scoped_nodes.py", line 471, in wildcard_import_names explicit = next(all.assigned_stmts()) TypeError: mulass_assigned_stmts() takes at least 2 arguments (1 given)
TypeError
def for_assigned_stmts(self, node=None, context=None, asspath=None): if asspath is None: for lst in self.iter.infer(context): if isinstance(lst, (nodes.Tuple, nodes.List)): for item in lst.elts: yield item else: for inferred in _resolve_looppart(self.iter.infer(context), asspath, context): yield inferred
def for_assigned_stmts(self, node, context=None, asspath=None): if asspath is None: for lst in self.iter.infer(context): if isinstance(lst, (nodes.Tuple, nodes.List)): for item in lst.elts: yield item else: for inferred in _resolve_looppart(self.iter.infer(context), asspath, context): yield inferred
https://github.com/PyCQA/astroid/issues/277
#!python Traceback (most recent call last): File "a.py", line 5, in <module> f.wildcard_import_names() File "astroid\scoped_nodes.py", line 471, in wildcard_import_names explicit = next(all.assigned_stmts()) TypeError: mulass_assigned_stmts() takes at least 2 arguments (1 given)
TypeError
def assend_assigned_stmts(self, node=None, context=None, asspath=None): return self.parent.assigned_stmts(node=self, context=context)
def assend_assigned_stmts(self, context=None): return self.parent.assigned_stmts(self, context=context)
https://github.com/PyCQA/astroid/issues/277
#!python Traceback (most recent call last): File "a.py", line 5, in <module> f.wildcard_import_names() File "astroid\scoped_nodes.py", line 471, in wildcard_import_names explicit = next(all.assigned_stmts()) TypeError: mulass_assigned_stmts() takes at least 2 arguments (1 given)
TypeError
def arguments_assigned_stmts(self, node=None, context=None, asspath=None): if context.callcontext: # reset call context/name callcontext = context.callcontext context = contextmod.copy_context(context) context.callcontext = None args = arguments.CallSite(callcontext) return args.infer_argument(self.parent, node.name, context) return _arguments_infer_argname(self, node.name, context)
def arguments_assigned_stmts(self, node, context, asspath=None): if context.callcontext: # reset call context/name callcontext = context.callcontext context = contextmod.copy_context(context) context.callcontext = None args = arguments.CallSite(callcontext) return args.infer_argument(self.parent, node.name, context) return _arguments_infer_argname(self, node.name, context)
https://github.com/PyCQA/astroid/issues/277
#!python Traceback (most recent call last): File "a.py", line 5, in <module> f.wildcard_import_names() File "astroid\scoped_nodes.py", line 471, in wildcard_import_names explicit = next(all.assigned_stmts()) TypeError: mulass_assigned_stmts() takes at least 2 arguments (1 given)
TypeError
def assign_assigned_stmts(self, node=None, context=None, asspath=None): if not asspath: yield self.value return for inferred in _resolve_asspart(self.value.infer(context), asspath, context): yield inferred
def assign_assigned_stmts(self, node, context=None, asspath=None): if not asspath: yield self.value return for inferred in _resolve_asspart(self.value.infer(context), asspath, context): yield inferred
https://github.com/PyCQA/astroid/issues/277
#!python Traceback (most recent call last): File "a.py", line 5, in <module> f.wildcard_import_names() File "astroid\scoped_nodes.py", line 471, in wildcard_import_names explicit = next(all.assigned_stmts()) TypeError: mulass_assigned_stmts() takes at least 2 arguments (1 given)
TypeError
def excepthandler_assigned_stmts(self, node=None, context=None, asspath=None): for assigned in node_classes.unpack_infer(self.type): if isinstance(assigned, nodes.ClassDef): assigned = bases.Instance(assigned) yield assigned
def excepthandler_assigned_stmts(self, node, context=None, asspath=None): for assigned in node_classes.unpack_infer(self.type): if isinstance(assigned, nodes.ClassDef): assigned = bases.Instance(assigned) yield assigned
https://github.com/PyCQA/astroid/issues/277
#!python Traceback (most recent call last): File "a.py", line 5, in <module> f.wildcard_import_names() File "astroid\scoped_nodes.py", line 471, in wildcard_import_names explicit = next(all.assigned_stmts()) TypeError: mulass_assigned_stmts() takes at least 2 arguments (1 given)
TypeError
def with_assigned_stmts(self, node=None, context=None, asspath=None): if asspath is None: for _, vars in self.items: if vars is None: continue for lst in vars.infer(context): if isinstance(lst, (nodes.Tuple, nodes.List)): for item in lst.nodes: yield item
def with_assigned_stmts(self, node, context=None, asspath=None): if asspath is None: for _, vars in self.items: if vars is None: continue for lst in vars.infer(context): if isinstance(lst, (nodes.Tuple, nodes.List)): for item in lst.nodes: yield item
https://github.com/PyCQA/astroid/issues/277
#!python Traceback (most recent call last): File "a.py", line 5, in <module> f.wildcard_import_names() File "astroid\scoped_nodes.py", line 471, in wildcard_import_names explicit = next(all.assigned_stmts()) TypeError: mulass_assigned_stmts() takes at least 2 arguments (1 given)
TypeError
def mulass_assigned_stmts(self, nodes, node=None, context=None, asspath=None): if asspath is None: asspath = [] try: index = self.elts.index(node) except ValueError: util.reraise( exceptions.InferenceError( "Tried to retrieve a node {node!r} which does not exist", node=self, assign_path=asspath, context=context, ) ) asspath.insert(0, index) return self.parent.assigned_stmts(node=self, context=context, asspath=asspath)
def mulass_assigned_stmts(self, nodes, node=None, context=None, asspath=None): if asspath is None: asspath = [] asspath.insert(0, self.elts.index(node)) return self.parent.assigned_stmts(self, context, asspath)
https://github.com/PyCQA/astroid/issues/277
#!python Traceback (most recent call last): File "a.py", line 5, in <module> f.wildcard_import_names() File "astroid\scoped_nodes.py", line 471, in wildcard_import_names explicit = next(all.assigned_stmts()) TypeError: mulass_assigned_stmts() takes at least 2 arguments (1 given)
TypeError
def __getattribute__(self, name): if name == "next": raise AttributeError("next method should not be called") if name.startswith("__") and name.endswith("__"): return super(_Yes, self).__getattribute__(name) if name == "accept": return super(_Yes, self).__getattribute__(name) return self
def __getattribute__(self, name): if name == "next": raise AttributeError("next method should not be called") if name.startswith("__") and name.endswith("__"): return super(_Yes, self).__getattribute__(name) return self
https://github.com/PyCQA/astroid/issues/270
Traceback (most recent call last): File "/usr/lib64/python3.5/runpy.py", line 170, in _run_module_as_main "__main__", mod_spec) File "/usr/lib64/python3.5/runpy.py", line 85, in _run_code exec(code, run_globals) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/__main__.py", line 3, in <module> pylint.run_pylint() File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/__init__.py", line 23, in run_pylint Run(sys.argv[1:]) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/lint.py", line 1315, in __init__ linter.check(args) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/lint.py", line 734, in check self._do_check(files_or_modules) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/lint.py", line 865, in _do_check self.check_astroid_module(ast_node, walker, rawcheckers, tokencheckers) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/lint.py", line 945, in check_astroid_module walker.walk(ast_node) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/utils.py", line 938, in walk self.walk(child) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/utils.py", line 938, in walk self.walk(child) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/utils.py", line 935, in walk cb(astroid) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/checkers/base.py", line 1946, in visit_assign if var_type == astroid.YES or var_type.as_string() == 'None': File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/astroid/bases.py", line 611, in as_string return to_code(self) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/astroid/as_string.py", line 79, in __call__ return node.accept(self) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/astroid/bases.py", line 395, in accept return func(self) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/astroid/as_string.py", line 341, in visit_list return '[%s]' % ', '.join([child.accept(self) for child in node.elts]) TypeError: sequence item 0: expected str instance, _Yes found
TypeError
def __getattribute__(self, name): if name == "next": raise AttributeError("next method should not be called") if name.startswith("__") and name.endswith("__"): return object.__getattribute__(self, name) if name == "accept": return object.__getattribute__(self, name) return self
def __getattribute__(self, name): if name == "next": raise AttributeError("next method should not be called") if name.startswith("__") and name.endswith("__"): return object.__getattribute__(self, name) return self
https://github.com/PyCQA/astroid/issues/270
Traceback (most recent call last): File "/usr/lib64/python3.5/runpy.py", line 170, in _run_module_as_main "__main__", mod_spec) File "/usr/lib64/python3.5/runpy.py", line 85, in _run_code exec(code, run_globals) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/__main__.py", line 3, in <module> pylint.run_pylint() File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/__init__.py", line 23, in run_pylint Run(sys.argv[1:]) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/lint.py", line 1315, in __init__ linter.check(args) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/lint.py", line 734, in check self._do_check(files_or_modules) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/lint.py", line 865, in _do_check self.check_astroid_module(ast_node, walker, rawcheckers, tokencheckers) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/lint.py", line 945, in check_astroid_module walker.walk(ast_node) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/utils.py", line 938, in walk self.walk(child) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/utils.py", line 938, in walk self.walk(child) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/utils.py", line 935, in walk cb(astroid) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/pylint/checkers/base.py", line 1946, in visit_assign if var_type == astroid.YES or var_type.as_string() == 'None': File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/astroid/bases.py", line 611, in as_string return to_code(self) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/astroid/as_string.py", line 79, in __call__ return node.accept(self) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/astroid/bases.py", line 395, in accept return func(self) File "/home/florian/proj/qutebrowser/git/.tox/pylint/lib/python3.5/site-packages/astroid/as_string.py", line 341, in visit_list return '[%s]' % ', '.join([child.accept(self) for child in node.elts]) TypeError: sequence item 0: expected str instance, _Yes found
TypeError
def getattr(self, name, context=None): if name == "im_func": return [self._proxied] return self._proxied.getattr(name, context)
def getattr(self, name, context=None): if name == "im_func": return [self._proxied] return super(UnboundMethod, self).getattr(name, context)
https://github.com/PyCQA/astroid/issues/91
#!python Traceback (most recent call last): File "C:\Python34\Scripts\pylint-script.py", line 9, in <module> load_entry_point('pylint==1.4.3', 'console_scripts', 'pylint')() File "e:\projects\repos\pylint\pylint\__init__.py", line 23, in run_pylint Run(sys.argv[1:]) File "e:\projects\repos\pylint\pylint\lint.py", line 1343, in __init__ linter.check(args) File "e:\projects\repos\pylint\pylint\lint.py", line 754, in check self._do_check(files_or_modules) File "e:\projects\repos\pylint\pylint\lint.py", line 877, in _do_check self.check_astroid_module(ast_node, walker, rawcheckers, tokencheckers) File "e:\projects\repos\pylint\pylint\lint.py", line 958, in check_astroid_module walker.walk(ast_node) File "e:\projects\repos\pylint\pylint\utils.py", line 877, in walk self.walk(child) File "e:\projects\repos\pylint\pylint\utils.py", line 877, in walk self.walk(child) File "e:\projects\repos\pylint\pylint\utils.py", line 877, in walk self.walk(child) File "e:\projects\repos\pylint\pylint\utils.py", line 877, in walk self.walk(child) File "e:\projects\repos\pylint\pylint\utils.py", line 874, in walk cb(astroid) File "e:\projects\repos\pylint\pylint\checkers\typecheck.py", line 652, in visit_with infered.getattr('__enter__') File "e:\projects\repos\astroid-1\astroid\bases.py", line 264, in getattr return super(UnboundMethod, self).getattr(name, context) AttributeError: 'super' object has no attribute 'getattr'
AttributeError